mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-09 14:37:06 +01:00
[extractor/crunchyroll] Add intro chapter (#6023)
Authored by: ByteDream
This commit is contained in:
parent
b23167e754
commit
93abb7406b
@ -116,6 +116,7 @@ class CrunchyrollBetaIE(CrunchyrollBaseIE):
|
|||||||
'episode': 'To the Future',
|
'episode': 'To the Future',
|
||||||
'episode_number': 73,
|
'episode_number': 73,
|
||||||
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg$',
|
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg$',
|
||||||
|
'chapters': 'count:2',
|
||||||
},
|
},
|
||||||
'params': {'skip_download': 'm3u8', 'format': 'all[format_id~=hardsub]'},
|
'params': {'skip_download': 'm3u8', 'format': 'all[format_id~=hardsub]'},
|
||||||
}, {
|
}, {
|
||||||
@ -136,6 +137,7 @@ class CrunchyrollBetaIE(CrunchyrollBaseIE):
|
|||||||
'episode': 'Porter Robinson presents Shelter the Animation',
|
'episode': 'Porter Robinson presents Shelter the Animation',
|
||||||
'episode_number': 0,
|
'episode_number': 0,
|
||||||
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg$',
|
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg$',
|
||||||
|
'chapters': 'count:0',
|
||||||
},
|
},
|
||||||
'params': {'skip_download': True},
|
'params': {'skip_download': True},
|
||||||
'skip': 'Video is Premium only',
|
'skip': 'Video is Premium only',
|
||||||
@ -209,6 +211,17 @@ def _real_extract(self, url):
|
|||||||
f['quality'] = hardsub_preference(hardsub_lang.lower())
|
f['quality'] = hardsub_preference(hardsub_lang.lower())
|
||||||
formats.extend(adaptive_formats)
|
formats.extend(adaptive_formats)
|
||||||
|
|
||||||
|
chapters = None
|
||||||
|
# if no intro chapter is available, a 403 without usable data is returned
|
||||||
|
intro_chapter = self._download_json(f'https://static.crunchyroll.com/datalab-intro-v2/{internal_id}.json',
|
||||||
|
display_id, fatal=False, errnote=False)
|
||||||
|
if isinstance(intro_chapter, dict):
|
||||||
|
chapters = [{
|
||||||
|
'title': 'Intro',
|
||||||
|
'start_time': float_or_none(intro_chapter.get('startTime')),
|
||||||
|
'end_time': float_or_none(intro_chapter.get('endTime'))
|
||||||
|
}]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': internal_id,
|
'id': internal_id,
|
||||||
'title': '%s Episode %s – %s' % (
|
'title': '%s Episode %s – %s' % (
|
||||||
@ -235,6 +248,7 @@ def _real_extract(self, url):
|
|||||||
'ext': subtitle_data.get('format')
|
'ext': subtitle_data.get('format')
|
||||||
}] for lang, subtitle_data in get_streams('subtitles')
|
}] for lang, subtitle_data in get_streams('subtitles')
|
||||||
},
|
},
|
||||||
|
'chapters': chapters
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user