diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-09-02 23:50:42 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-09-02 23:50:42 +0700 |
commit | c2b2c7e1386056698ee1b0de5427ea90abf8e9c3 (patch) | |
tree | 8a3f6144bffef3dffb3334ebbb2012c162aded45 /youtube_dl/utils.py | |
parent | dacb3a864a8c89edb312cd28c3de1605a5467d0f (diff) |
[utils] Add quicktime to mimetype2ext
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 904f23fd7..ed199c4ad 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -2168,6 +2168,7 @@ def mimetype2ext(mt): 'f4m+xml': 'f4m', 'hds+xml': 'f4m', 'vnd.ms-sstr+xml': 'ism', + 'quicktime': 'mov', }.get(res, res) |