diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-20 22:04:17 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-20 22:04:17 +0600 |
commit | 14f7abfa71bc71f46a5e3306062b1feccc4ccd26 (patch) | |
tree | 6eaba170fcbba4981f18c9fbb3b18d15303e170d | |
parent | 0f0b5736dab5e45189d1b35e0b7074585edd057b (diff) |
[ted] Lower preference for direct audio since it's mono
-rw-r--r-- | youtube_dl/extractor/ted.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py index c788feb5d..8aa27d282 100644 --- a/youtube_dl/extractor/ted.py +++ b/youtube_dl/extractor/ted.py @@ -210,6 +210,7 @@ class TEDIE(InfoExtractor): 'url': audio_download, 'format_id': 'audio', 'vcodec': 'none', + 'preference': -0.5, }) self._sort_formats(formats) |