From: Sergey M․ Date: Mon, 20 Apr 2015 15:58:46 +0000 (+0600) Subject: [YoutubeDL] mp3 is compatible with mp4 X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=6728187ac0b1d5d083e8654e35a18d33485f2614;p=youtube-dl [YoutubeDL] mp3 is compatible with mp4 --- diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index b5fddb8e7..5b2c3aa38 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1380,7 +1380,7 @@ class YoutubeDL(object): video_ext, audio_ext = audio.get('ext'), video.get('ext') if video_ext and audio_ext: COMPATIBLE_EXTS = ( - ('mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v'), + ('mp3', 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v'), ('webm') ) for exts in COMPATIBLE_EXTS: