diff --git a/Music/Downloader.py b/Music/Downloader.py index 4df1824..c093785 100644 --- a/Music/Downloader.py +++ b/Music/Downloader.py @@ -14,18 +14,21 @@ class Downloader(): 'playliststart': 0, 'extract_flat': False, 'playlistend': config.MAX_PLAYLIST_LENGTH, + 'quiet': True } __YDL_OPTIONS_EXTRACT = {'format': 'bestaudio/best', 'default_search': 'auto', 'playliststart': 0, 'extract_flat': True, 'playlistend': config.MAX_PLAYLIST_LENGTH, + 'quiet': True } __YDL_OPTIONS_FORCE_EXTRACT = {'format': 'bestaudio/best', 'default_search': 'auto', 'playliststart': 0, 'extract_flat': False, 'playlistend': config.MAX_PLAYLIST_FORCED_LENGTH, + 'quiet': True } __BASE_URL = 'https://www.youtube.com/watch?v={}' diff --git a/config/config.py b/config/config.py index 964e3e0..8949ab7 100644 --- a/config/config.py +++ b/config/config.py @@ -11,7 +11,7 @@ class Configs(Singleton): self.SPOTIFY_SECRET = config('SPOTIFY_SECRET') self.CLEANER_MESSAGES_QUANT = 5 - self.BOT_PREFIX = '$' + self.BOT_PREFIX = '!' self.VC_TIMEOUT = 600 self.MAX_PLAYLIST_LENGTH = 50