diff options
author | remitamine <remitamine@gmail.com> | 2016-03-15 18:39:50 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-03-15 18:39:50 +0100 |
commit | 49dea4913bea3b8e5c7d65dd932aa68ada526088 (patch) | |
tree | 05a37e2acd98797db86e24c31d47a3e7840abda9 /youtube_dl/extractor/common.py | |
parent | dec2cae0a768d2eb1f7d28cfd267d0bf5383bcdd (diff) | |
parent | dd867805969126ed0bd2ab8fe69eaf61fbf44ab7 (diff) |
Merge pull request #8513 from remitamine/dash-sort
[extractor/common] fix dash formats sorting
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index ecd7da767..770105a5b 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -862,6 +862,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: @@ -872,6 +873,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: |