mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
parent
379a4f161d
commit
bc40160883
1 changed files with 1 additions and 1 deletions
|
@ -2619,7 +2619,7 @@ class YoutubeDL:
|
|||
if chapter or offset:
|
||||
new_info.update({
|
||||
'section_start': offset + chapter.get('start_time', 0),
|
||||
'section_end': offset + min(chapter.get('end_time', 0), duration),
|
||||
'section_end': offset + min(chapter.get('end_time', duration), duration),
|
||||
'section_title': chapter.get('title'),
|
||||
'section_number': chapter.get('index'),
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue