mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 12:37:04 +01:00
Fix end time of clips (#5255)
Closes #5256 Authored by: cruel-efficiency
This commit is contained in:
parent
217753f4aa
commit
2576d53a31
@ -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 New Issue
Block a user