diff options
author | pukkandan <pukkandan@gmail.com> | 2020-11-05 21:05:36 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2020-12-13 20:05:03 +0530 |
commit | 909d24dd6dc835e1291596dda17f962a6ec34875 (patch) | |
tree | a4e4ebd418cacffe022577fcec471ab0b34afafc /youtube_dlc/extractor/vimeo.py | |
parent | eb8a44336c3fbecefa9540794449adfd1b53d32b (diff) |
Better Format Selection
* Added options: --video-multistreams, --no-video-multistreams, --audio-multistreams, --no-audio-multistreams
* New format selectors: best*, worst*, bestvideo*, bestaudio*, worstvideo*, worstaudio*
* Added b,w,v,a as alias for best, worst, video and audio respectively in format selection
* Changed video format sorting to show video only files and video+audio files together.
Diffstat (limited to 'youtube_dlc/extractor/vimeo.py')
-rw-r--r-- | youtube_dlc/extractor/vimeo.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dlc/extractor/vimeo.py b/youtube_dlc/extractor/vimeo.py index 21f0620be..2fc42bbae 100644 --- a/youtube_dlc/extractor/vimeo.py +++ b/youtube_dlc/extractor/vimeo.py @@ -181,6 +181,7 @@ class VimeoBaseInfoExtractor(InfoExtractor): 'preference': 1, }) + # Reduntant code! This is already done in common.py # for f in formats: # if f.get('vcodec') == 'none': # f['preference'] = -50 |