mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[YoutubeDL] Do not force bestvideo+bestaudio when outtmpl is stdout (#5627)
This commit is contained in:
parent
553e412bda
commit
3799834dcf
1 changed files with 3 additions and 1 deletions
|
@ -1086,7 +1086,9 @@ def process_video_result(self, info_dict, download=True):
|
||||||
req_format = self.params.get('format')
|
req_format = self.params.get('format')
|
||||||
if req_format is None:
|
if req_format is None:
|
||||||
req_format_list = []
|
req_format_list = []
|
||||||
if info_dict['extractor'] in ['youtube', 'ted'] and FFmpegMergerPP(self).available:
|
if (self.params.get('outtmpl', DEFAULT_OUTTMPL) != '-'
|
||||||
|
and info_dict['extractor'] in ['youtube', 'ted']
|
||||||
|
and FFmpegMergerPP(self).available):
|
||||||
req_format_list.append('bestvideo+bestaudio')
|
req_format_list.append('bestvideo+bestaudio')
|
||||||
req_format_list.append('best')
|
req_format_list.append('best')
|
||||||
req_format = '/'.join(req_format_list)
|
req_format = '/'.join(req_format_list)
|
||||||
|
|
Loading…
Reference in a new issue