mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 01:02:13 +01:00
[embedsubtitle] Fix error when duration is unknown
This commit is contained in:
parent
804ca01cc7
commit
1f2a268bd3
1 changed files with 1 additions and 1 deletions
|
@ -545,7 +545,7 @@ def run(self, information):
|
||||||
return [], information
|
return [], information
|
||||||
|
|
||||||
filename = information['filepath']
|
filename = information['filepath']
|
||||||
if self._duration_mismatch(
|
if information.get('duration') and self._duration_mismatch(
|
||||||
self._get_real_video_duration(information, False), information['duration']):
|
self._get_real_video_duration(information, False), information['duration']):
|
||||||
self.to_screen(f'Skipping {self.pp_key()} since the real and expected durations mismatch')
|
self.to_screen(f'Skipping {self.pp_key()} since the real and expected durations mismatch')
|
||||||
return [], information
|
return [], information
|
||||||
|
|
Loading…
Reference in a new issue