mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
Merge pull request #5641 from dstftw/preserve-best-for-stdout-outtmpl
[YoutubeDL] Do not force bestvideo+bestaudio when outtmpl is stdout
This commit is contained in:
commit
d47e980d0d
@ -1086,7 +1086,9 @@ class YoutubeDL(object):
|
|||||||
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 New Issue
Block a user