mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-01-28 19:58:38 +01:00
Fix bug in 56ba69e4c9
This commit is contained in:
parent
d32f30ac48
commit
fccf90e7f3
1 changed files with 1 additions and 1 deletions
|
@ -3060,7 +3060,7 @@ class YoutubeDL:
|
||||||
|
|
||||||
success = True
|
success = True
|
||||||
merger, fd = FFmpegMergerPP(self), None
|
merger, fd = FFmpegMergerPP(self), None
|
||||||
if info_dict.get('url'):
|
if info_dict.get('protocol') or info_dict.get('url'):
|
||||||
fd = get_suitable_downloader(info_dict, self.params, to_stdout=temp_filename == '-')
|
fd = get_suitable_downloader(info_dict, self.params, to_stdout=temp_filename == '-')
|
||||||
if fd is not FFmpegFD and (
|
if fd is not FFmpegFD and (
|
||||||
info_dict.get('section_start') or info_dict.get('section_end')):
|
info_dict.get('section_start') or info_dict.get('section_end')):
|
||||||
|
|
Loading…
Add table
Reference in a new issue