projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
154c209
)
[extractor/common] fix dash formats sorting
author
remitamine
<remitamine@gmail.com>
Thu, 11 Feb 2016 09:55:50 +0000
(10:55 +0100)
committer
remitamine
<remitamine@gmail.com>
Thu, 11 Feb 2016 09:55:50 +0000
(10:55 +0100)
youtube_dl/extractor/common.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/common.py
b/youtube_dl/extractor/common.py
index 00645feeda471230b0276c4aace5c2ff6420ffbe..cd7087bec8297f185958d3ddf1530f8e2f183fee 100644
(file)
--- 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: