Fix end time of clips (#5255)

Closes #5256
Authored by: cruel-efficiency
This commit is contained in:
cruel-efficiency 2022-10-18 05:51:43 -07:00 committed by GitHub
parent 217753f4aa
commit 2576d53a31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2720,7 +2720,8 @@ class YoutubeDL:
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'),
})