mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Fix end time of clips (#5255)
Closes #5256 Authored by: cruel-efficiency
This commit is contained in:
parent
217753f4aa
commit
2576d53a31
1 changed files with 2 additions and 1 deletions
|
@ -2720,7 +2720,8 @@ def to_screen(*msg):
|
|||
if chapter or offset:
|
||||
new_info.update({
|
||||
'section_start': offset + chapter.get('start_time', 0),
|
||||
'section_end': end_time if end_time < offset + duration else None,
|
||||
# duration may not be accurate. So allow deviations <1sec
|
||||
'section_end': end_time if end_time <= offset + duration + 1 else None,
|
||||
'section_title': chapter.get('title'),
|
||||
'section_number': chapter.get('index'),
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue