aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-02-11 10:55:50 +0100
committerremitamine <remitamine@gmail.com>2016-02-11 10:55:50 +0100
commitdd867805969126ed0bd2ab8fe69eaf61fbf44ab7 (patch)
tree73c7b659ab196d8ce4a44c9264a0d8ea70dc06bb /youtube_dl/extractor
parent154c209e2db2bd6f51998503b15d9a050bc1e738 (diff)
downloadyoutube-dl-dd867805969126ed0bd2ab8fe69eaf61fbf44ab7.tar.xz
[extractor/common] fix dash formats sorting
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r--youtube_dl/extractor/common.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 00645feed..cd7087bec 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -851,6 +851,7 @@ class InfoExtractor(object):
proto_preference = 0 if determine_protocol(f) in ['http', 'https'] else -0.1
if f.get('vcodec') == 'none': # audio only
+ preference -= 50
if self._downloader.params.get('prefer_free_formats'):
ORDER = ['aac', 'mp3', 'm4a', 'webm', 'ogg', 'opus']
else:
@@ -861,6 +862,8 @@ class InfoExtractor(object):
except ValueError:
audio_ext_preference = -1
else:
+ if f.get('acodec') == 'none': # video only
+ preference -= 40
if self._downloader.params.get('prefer_free_formats'):
ORDER = ['flv', 'mp4', 'webm']
else: