youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 25cb05bda9c8609c5e2f329f199735837b4d8c60
parent 6fa6d385490e913af48538a493384e7288d30c8f
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Fri, 11 Mar 2016 23:48:05 +0800

[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.

Diffstat:
Myoutube_dl/utils.py | 16----------------
1 file changed, 0 insertions(+), 16 deletions(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -1893,22 +1893,6 @@ 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