Fix end time of clips (#5255)

Closes #5256
Authored by: cruel-efficiency
pull/5283/head
cruel-efficiency 2 years ago committed by GitHub
parent 217753f4aa
commit 2576d53a31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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'),
})

Loading…
Cancel
Save