mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[theplatform] extract chapters
This commit is contained in:
parent
a57a8e9918
commit
fd178b8748
@ -80,14 +80,33 @@ def _parse_theplatform_metadata(self, info):
|
|||||||
'url': src,
|
'url': src,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
duration = info.get('duration')
|
||||||
|
tp_chapters = info.get('chapters', [])
|
||||||
|
chapters = []
|
||||||
|
if tp_chapters:
|
||||||
|
def _add_chapter(start_time, end_time):
|
||||||
|
start_time = float_or_none(start_time, 1000)
|
||||||
|
end_time = float_or_none(end_time, 1000)
|
||||||
|
if start_time is None or end_time is None:
|
||||||
|
return
|
||||||
|
chapters.append({
|
||||||
|
'start_time': start_time,
|
||||||
|
'end_time': end_time,
|
||||||
|
})
|
||||||
|
|
||||||
|
for chapter in tp_chapters[:-1]:
|
||||||
|
_add_chapter(chapter.get('startTime'), chapter.get('endTime'))
|
||||||
|
_add_chapter(tp_chapters[-1].get('startTime'), tp_chapters[-1].get('endTime') or duration)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'title': info['title'],
|
'title': info['title'],
|
||||||
'subtitles': subtitles,
|
'subtitles': subtitles,
|
||||||
'description': info['description'],
|
'description': info['description'],
|
||||||
'thumbnail': info['defaultThumbnailUrl'],
|
'thumbnail': info['defaultThumbnailUrl'],
|
||||||
'duration': int_or_none(info.get('duration'), 1000),
|
'duration': float_or_none(duration, 1000),
|
||||||
'timestamp': int_or_none(info.get('pubDate'), 1000) or None,
|
'timestamp': int_or_none(info.get('pubDate'), 1000) or None,
|
||||||
'uploader': info.get('billingCode'),
|
'uploader': info.get('billingCode'),
|
||||||
|
'chapters': chapters,
|
||||||
}
|
}
|
||||||
|
|
||||||
def _extract_theplatform_metadata(self, path, video_id):
|
def _extract_theplatform_metadata(self, path, video_id):
|
||||||
|
Loading…
Reference in New Issue
Block a user