From 0dae8e29378148cc0b5739a48765ef0aceab792f Mon Sep 17 00:00:00 2001 From: Pier-Angelo Gaetani Date: Mon, 22 Jan 2018 14:23:06 -0600 Subject: [PATCH] [Audio] Fix slow Youtube download (#1266) --- cogs/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/audio.py b/cogs/audio.py index a965d5d2b..c2af8a257 100644 --- a/cogs/audio.py +++ b/cogs/audio.py @@ -43,7 +43,7 @@ else: youtube_dl_options = { 'source_address': '0.0.0.0', - 'format': 'bestaudio/best', + 'format': 'best', 'extractaudio': True, 'audioformat': "mp3", 'nocheckcertificate': True,