mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[YoutubeDL] Make bestvideo+bestaudio/best
default format when merger is available
This commit is contained in:
parent
5b5fbc0867
commit
feccf29c87
@ -1091,7 +1091,11 @@ def process_video_result(self, info_dict, download=True):
|
||||
|
||||
req_format = self.params.get('format')
|
||||
if req_format is None:
|
||||
req_format = 'best'
|
||||
req_format_list = []
|
||||
if info_dict['extractor'] == 'youtube' and FFmpegMergerPP(self).available:
|
||||
req_format_list.append('bestvideo+bestaudio')
|
||||
req_format_list.append('best')
|
||||
req_format = '/'.join(req_format_list)
|
||||
formats_to_download = []
|
||||
if req_format == 'all':
|
||||
formats_to_download = formats
|
||||
|
Loading…
Reference in New Issue
Block a user