summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-23 16:48:59 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-23 16:48:59 +0700
commitf164b97123d5b61a7dd055c888212a0dc670f04f (patch)
tree9f8a0cb15493fe6987d8e0bb6e1cba9c8ed59134
parent5275efe30d0606deb44c7723271110f66a1e1e65 (diff)
downloadyoutube-dl-f164b97123d5b61a7dd055c888212a0dc670f04f.tar.gz
youtube-dl-f164b97123d5b61a7dd055c888212a0dc670f04f.tar.xz
youtube-dl-f164b97123d5b61a7dd055c888212a0dc670f04f.zip
[utils] Add another f4m mimetype to mimetype2ext
-rw-r--r--youtube_dl/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index e6e0155b4..f5cd6819b 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -2123,6 +2123,7 @@ def mimetype2ext(mt):
         'dash+xml': 'mpd',
         'f4m': 'f4m',
         'f4m+xml': 'f4m',
+        'hds+xml': 'f4m',
         'vnd.ms-sstr+xml': 'ism',
     }.get(res, res)