mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[YoutubeDL] Fix PEP8 W503
This commit is contained in:
parent
c1c924abfe
commit
3749e36e9f
@ -1085,9 +1085,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 (self.params.get('outtmpl', DEFAULT_OUTTMPL) != '-'
|
if (self.params.get('outtmpl', DEFAULT_OUTTMPL) != '-' and
|
||||||
and info_dict['extractor'] in ['youtube', 'ted']
|
info_dict['extractor'] in ['youtube', 'ted'] and
|
||||||
and FFmpegMergerPP(self).available):
|
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