Merge pull request #8130 from dyn888/master
[youtube-dl] / youtube_dl / utils.py
index 9c1c0e0bdf55040dc3b82d4393d50c3623e3b0de..c63b61598ac421c99f86928093c8a38f0f57ca59 100644 (file)
@@ -1828,9 +1828,11 @@ def mimetype2ext(mt):
     _, _, res = mt.rpartition('/')
 
     return {
-        'x-ms-wmv': 'wmv',
-        'x-mp4-fragmented': 'mp4',
+        '3gpp': '3gp',
         'ttml+xml': 'ttml',
+        'x-flv': 'flv',
+        'x-mp4-fragmented': 'mp4',
+        'x-ms-wmv': 'wmv',
     }.get(res, res)