ソースを参照

[utils] Add codec2ext

Yen Chi Hsuan 9 年 前
コミット
19a17d4623
1 ファイル変更13 行追加0 行削除
  1. 13 0
      youtube_dl/utils.py

+ 13 - 0
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