aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/utils.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-03-11 21:40:07 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-03-11 21:40:07 +0800
commit64f08d4ff2392135be07774f2d5371f111f21592 (patch)
tree2664977778269aae36181360f718d201a8fa5197 /youtube_dl/utils.py
parente738e43358a7f34dbbcb73b45b228d7b9b3360a7 (diff)
parent6d210f20905a5c31f72eff16f9f4dbbed7f52c70 (diff)
Merge pull request #8766 from yan12125/dash-detect-ext
Detect file extensions of DASH formats from their codecs
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r--youtube_dl/utils.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 22a39a0ab..0e04e91a4 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -1893,6 +1893,22 @@ 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',
+ 'avc2': 'mp4',
+ 'avc3': 'mp4',
+ 'avc4': 'mp4',
+ 'mp4a': 'm4a',
+ 'vorbis': 'webm',
+ 'vp9': 'webm',
+ }.get(codec_type)
+
+
def urlhandle_detect_ext(url_handle):
try:
url_handle.headers