mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-06 06:45:00 +01:00
parent
f3008bc5f8
commit
ca5cce5b07
3 changed files with 5 additions and 3 deletions
|
|
@ -495,7 +495,7 @@ class NhkForSchoolBangumiIE(InfoExtractor):
|
|||
chapters = None
|
||||
if chapter_durations and chapter_titles and len(chapter_durations) == len(chapter_titles):
|
||||
start_time = chapter_durations
|
||||
end_time = chapter_durations[1:] + [duration]
|
||||
end_time = [*chapter_durations[1:], duration]
|
||||
chapters = [{
|
||||
'start_time': s,
|
||||
'end_time': e,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue