summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-04-01 19:39:02 +0100
committerremitamine <remitamine@gmail.com>2016-04-01 19:47:49 +0100
commitdf634be2ed85b33968973a3e85935bb5d578ce42 (patch)
treef73edcdc2b704248f2b66a0b23a17c24b46c1fed
parent6d628fafcadf6b9d2bc16c34c8cda8b53860e406 (diff)
downloadyoutube-dl-df634be2ed85b33968973a3e85935bb5d578ce42.tar.gz
youtube-dl-df634be2ed85b33968973a3e85935bb5d578ce42.tar.xz
youtube-dl-df634be2ed85b33968973a3e85935bb5d578ce42.zip
[common] prefer using mime type over ext for smil subtitle extraction
the subtitle ext for http://www.cnet.com/videos/download-amazon-prime-movies-and-tv/
is adb_xml while using the mime type it get tt(application/smptett+xml)
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 85ac0400c..94a583891 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1335,7 +1335,7 @@ class InfoExtractor(object):
             if not src or src in urls:
                 continue
             urls.append(src)
-            ext = textstream.get('ext') or determine_ext(src) or mimetype2ext(textstream.get('type'))
+            ext = textstream.get('ext') or mimetype2ext(textstream.get('type')) or determine_ext(src)
             lang = textstream.get('systemLanguage') or textstream.get('systemLanguageName') or textstream.get('lang') or subtitles_lang
             subtitles.setdefault(lang, []).append({
                 'url': src,