mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[ModifyChapters] Modify duration in infodict
This commit is contained in:
parent
65ea4cba29
commit
4019bf0525
1 changed files with 3 additions and 2 deletions
|
@ -38,8 +38,9 @@ def run(self, info):
|
|||
if not cuts:
|
||||
return [], info
|
||||
|
||||
if self._duration_mismatch(real_duration, info.get('duration'), 1):
|
||||
if not self._duration_mismatch(real_duration, info['chapters'][-1]['end_time']):
|
||||
original_duration, info['duration'] = info.get('duration'), info['chapters'][-1]['end_time']
|
||||
if self._duration_mismatch(real_duration, original_duration, 1):
|
||||
if not self._duration_mismatch(real_duration, info['duration']):
|
||||
self.to_screen(f'Skipping {self.pp_key()} since the video appears to be already cut')
|
||||
return [], info
|
||||
if not info.get('__real_download'):
|
||||
|
|
Loading…
Reference in a new issue