Browse Source

[utils] Remove codec2ext

This function is orignally used for determining file extensions of DASH
formats. Now in DASH, ext is determined by mime_type. See #8766 for more
information.
Yen Chi Hsuan 9 years ago
parent
commit
25cb05bda9
1 changed files with 0 additions and 16 deletions
  1. 0 16
      youtube_dl/utils.py

+ 0 - 16
youtube_dl/utils.py

@@ -1893,22 +1893,6 @@ def mimetype2ext(mt):
     }.get(res, res)
     }.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):
 def urlhandle_detect_ext(url_handle):
     try:
     try:
         url_handle.headers
         url_handle.headers