diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-03-05 18:18:28 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-03-05 18:18:28 +0800 |
commit | 19a17d462388b5d10196352e5f9d1491d608783a (patch) | |
tree | 63bac3ea6c34b5d0a3e8fd8a28335290394d2a1d /youtube_dl/utils.py | |
parent | 845817aadfa5f811afe5834c0b34f50f6c3a2a67 (diff) |
[utils] Add codec2ext
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 22a39a0ab..dc0bf5627 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1893,6 +1893,19 @@ def mimetype2ext(mt): }.get(res, res) +def codec2ext(codec): + codec_type = codec.split('.')[0] + + # Leave the return value None for unknown values as codec_type + # is not a good fallback for file extensions + return { + 'avc1': 'mp4', + 'mp4a': 'm4a', + 'vorbis': 'webm', + 'vp9': 'webm', + }.get(codec_type) + + def urlhandle_detect_ext(url_handle): try: url_handle.headers |