mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 09:40:30 +00:00
[downloader/external:ffmpegfd] check for None value of start_time
This commit is contained in:
parent
99cbe98ce8
commit
f34294fa0c
@ -175,7 +175,7 @@ def _call_downloader(self, tmpfilename, info_dict):
|
|||||||
|
|
||||||
args = [ffpp.executable, '-y']
|
args = [ffpp.executable, '-y']
|
||||||
|
|
||||||
start_time = info_dict.get('start_time', 0)
|
start_time = info_dict.get('start_time') or 0
|
||||||
if start_time:
|
if start_time:
|
||||||
args += ['-ss', compat_str(start_time)]
|
args += ['-ss', compat_str(start_time)]
|
||||||
end_time = info_dict.get('end_time')
|
end_time = info_dict.get('end_time')
|
||||||
|
Loading…
Reference in New Issue
Block a user