youtube-dl

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

commit b4173f1551c47f64745cb91451c46891e2aaac16
parent 2817b99cf2d799c54df0f393e237886bf9d1b80c
Author: Remita Amine <remitamine@gmail.com>
Date:   Wed,  6 Jul 2016 09:06:28 +0100

[utils] add mimetypes to determine manifest ext(m3u8, f4m, mpd)

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

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -2097,6 +2097,7 @@ def mimetype2ext(mt): return ext _, _, res = mt.rpartition('/') + res = res.lower() return { '3gpp': '3gp', @@ -2108,6 +2109,12 @@ def mimetype2ext(mt): 'x-flv': 'flv', 'x-mp4-fragmented': 'mp4', 'x-ms-wmv': 'wmv', + 'mpegurl': 'm3u8', + 'x-mpegurl': 'm3u8', + 'vnd.apple.mpegurl': 'm3u8', + 'dash+xml': 'mpd', + 'f4m': 'f4m', + 'f4m+xml': 'f4m', }.get(res, res)