mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
Implement the max quality option in YoutubeDL
This commit is contained in:
parent
dd82ffea0c
commit
99e206d508
@ -469,6 +469,10 @@ def process_video_result(self, info_dict, download=True):
|
||||
self.list_formats(info_dict)
|
||||
return
|
||||
|
||||
format_limit = self.params.get('format_limit', None)
|
||||
if format_limit:
|
||||
formats = [f for f in formats if f['format_id'] <= format_limit]
|
||||
|
||||
req_format = self.params.get('format', 'best')
|
||||
formats_to_download = []
|
||||
if req_format == 'best' or req_format is None:
|
||||
|
Loading…
Reference in New Issue
Block a user