1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

if first chapter starts at non-zero time, youtube-dl (or maybe ffmpeg?) ignores it and you end up with the first chapter starting at the wrong time. So, when first chapter does not start at time 0, insert an "Intro" chapter, so that the music starts at a chapter marker.

This commit is contained in:
teridon 2020-08-07 20:32:21 -04:00
parent cdb3cfb31a
commit 6bfc0d96d7

View file

@ -96,8 +96,18 @@ class DigitalConcertHallIE(InfoExtractor):
entries[-1]['description'] = vid_info.get('short_description', "missing description")
if vid_info.get('cuepoints'):
chapters = []
first_chapter = 1
for chapter in vid_info.get('cuepoints'):
start_time = chapter.get('time')
# Often, the first chapter does not start at zero. In this case,
# insert an intro chapter so that first chapter is the start of the music
if (first_chapter == 1) and (start_time != 0):
chapters.append({
'start_time': 0,
'end_time': start_time,
'title': '0. Intro'
})
first_chapter = 0
end_time = start_time + chapter.get('duration')
chapter_title = chapter.get('text')
chapters.append({