diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-05-31 04:05:09 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-05-31 04:05:09 +0600 |
commit | df15ef8dab6df79eb076b3d06b3948917763ac3a (patch) | |
tree | de8db1775f5687b316602a5742cd200ba77eba25 | |
parent | 002c0fb511f3908c07833191517802e2c51ac731 (diff) |
[YoutubeDL] Tweak select_format for video only media
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 5fc8754c6..aa6ec9d9a 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -924,8 +924,9 @@ class YoutubeDL(object): if f.get('vcodec') != 'none' and f.get('acodec') != 'none'] if audiovideo_formats: return audiovideo_formats[format_idx] - # for audio only urls, select the best/worst audio format - elif all(f.get('acodec') != 'none' for f in available_formats): + # for audio only (soundcloud) or video only (imgur) urls, select the best/worst audio format + elif (all(f.get('acodec') != 'none' for f in available_formats) or + all(f.get('vcodec') != 'none' for f in available_formats)): return available_formats[format_idx] elif format_spec == 'bestaudio': audio_formats = [ |