From: Yen Chi Hsuan Date: Sun, 6 Mar 2016 05:32:03 +0000 (+0800) Subject: [utils] Add more codecs to codec2ext X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=6d210f20905a5c31f72eff16f9f4dbbed7f52c70;p=youtube-dl [utils] Add more codecs to codec2ext BBC uses avc3. Here's an example (thanks to @remitamine for this example) http://rdmedia.bbc.co.uk/dash/ondemand/bbb/2/client_manifest-common_init.mpd See also https://trac.ffmpeg.org/ticket/5217 --- diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index dc0bf5627..0e04e91a4 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1900,6 +1900,9 @@ def codec2ext(codec): # is not a good fallback for file extensions return { 'avc1': 'mp4', + 'avc2': 'mp4', + 'avc3': 'mp4', + 'avc4': 'mp4', 'mp4a': 'm4a', 'vorbis': 'webm', 'vp9': 'webm',