mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
[extractor/crunchyroll:beta] Improve handling of hardsubs (#5041)
Closes #3397 Authored by: Grub4K
This commit is contained in:
parent
f1aae71568
commit
dfea94f8f6
@ -1722,7 +1722,7 @@ #### crunchyroll
|
|||||||
|
|
||||||
#### crunchyrollbeta
|
#### crunchyrollbeta
|
||||||
* `format`: Which stream type(s) to extract (default: `adaptive_hls`). Potentially useful values include `adaptive_hls`, `adaptive_dash`, `vo_adaptive_hls`, `vo_adaptive_dash`, `download_hls`, `download_dash`, `multitrack_adaptive_hls_v2`
|
* `format`: Which stream type(s) to extract (default: `adaptive_hls`). Potentially useful values include `adaptive_hls`, `adaptive_dash`, `vo_adaptive_hls`, `vo_adaptive_dash`, `download_hls`, `download_dash`, `multitrack_adaptive_hls_v2`
|
||||||
* `hardsub`: Preference order for which hardsub versions to extract (default: `None` = no hardsubs), e.g. `crunchyrollbeta:hardsub=en-US,None`
|
* `hardsub`: Preference order for which hardsub versions to extract, or `all` (default: `None` = no hardsubs), e.g. `crunchyrollbeta:hardsub=en-US,None`
|
||||||
|
|
||||||
#### vikichannel
|
#### vikichannel
|
||||||
* `video_types`: Types of videos to download - one or more of `episodes`, `movies`, `clips`, `trailers`
|
* `video_types`: Types of videos to download - one or more of `episodes`, `movies`, `clips`, `trailers`
|
||||||
|
@ -846,7 +846,7 @@ def to_stdout(self, message, skip_eol=False, quiet=None):
|
|||||||
'Use "YoutubeDL.to_screen" instead')
|
'Use "YoutubeDL.to_screen" instead')
|
||||||
self._write_string(f'{self._bidi_workaround(message)}\n', self._out_files.out)
|
self._write_string(f'{self._bidi_workaround(message)}\n', self._out_files.out)
|
||||||
|
|
||||||
def to_screen(self, message, skip_eol=False, quiet=None):
|
def to_screen(self, message, skip_eol=False, quiet=None, only_once=False):
|
||||||
"""Print message to screen if not in quiet mode"""
|
"""Print message to screen if not in quiet mode"""
|
||||||
if self.params.get('logger'):
|
if self.params.get('logger'):
|
||||||
self.params['logger'].debug(message)
|
self.params['logger'].debug(message)
|
||||||
@ -855,7 +855,7 @@ def to_screen(self, message, skip_eol=False, quiet=None):
|
|||||||
return
|
return
|
||||||
self._write_string(
|
self._write_string(
|
||||||
'%s%s' % (self._bidi_workaround(message), ('' if skip_eol else '\n')),
|
'%s%s' % (self._bidi_workaround(message), ('' if skip_eol else '\n')),
|
||||||
self._out_files.screen)
|
self._out_files.screen, only_once=only_once)
|
||||||
|
|
||||||
def to_stderr(self, message, only_once=False):
|
def to_stderr(self, message, only_once=False):
|
||||||
"""Print message to stderr"""
|
"""Print message to stderr"""
|
||||||
|
@ -779,7 +779,28 @@ class CrunchyrollBetaIE(CrunchyrollBetaBaseIE):
|
|||||||
'episode_number': 73,
|
'episode_number': 73,
|
||||||
'thumbnail': r're:^https://beta.crunchyroll.com/imgsrv/.*\.jpeg$',
|
'thumbnail': r're:^https://beta.crunchyroll.com/imgsrv/.*\.jpeg$',
|
||||||
},
|
},
|
||||||
'params': {'skip_download': 'm3u8'},
|
'params': {'skip_download': 'm3u8', 'format': 'all[format_id~=hardsub]'},
|
||||||
|
}, {
|
||||||
|
'url': 'https://beta.crunchyroll.com/watch/GYE5WKQGR',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'GYE5WKQGR',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'duration': 366.459,
|
||||||
|
'timestamp': 1476788400,
|
||||||
|
'description': 'md5:74b67283ffddd75f6e224ca7dc031e76',
|
||||||
|
'title': 'SHELTER Episode – Porter Robinson presents Shelter the Animation',
|
||||||
|
'upload_date': '20161018',
|
||||||
|
'series': 'SHELTER',
|
||||||
|
'series_id': 'GYGG09WWY',
|
||||||
|
'season': 'SHELTER',
|
||||||
|
'season_id': 'GR09MGK4R',
|
||||||
|
'season_number': 1,
|
||||||
|
'episode': 'Porter Robinson presents Shelter the Animation',
|
||||||
|
'episode_number': 0,
|
||||||
|
'thumbnail': r're:^https://beta.crunchyroll.com/imgsrv/.*\.jpeg$',
|
||||||
|
},
|
||||||
|
'params': {'skip_download': True},
|
||||||
|
'skip': 'Video is Premium only',
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://beta.crunchyroll.com/watch/GY2P1Q98Y',
|
'url': 'https://beta.crunchyroll.com/watch/GY2P1Q98Y',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
@ -807,30 +828,48 @@ def _real_extract(self, url):
|
|||||||
hardsub_preference = qualities(requested_hardsubs[::-1])
|
hardsub_preference = qualities(requested_hardsubs[::-1])
|
||||||
requested_formats = self._configuration_arg('format') or ['adaptive_hls']
|
requested_formats = self._configuration_arg('format') or ['adaptive_hls']
|
||||||
|
|
||||||
formats = []
|
available_formats = {}
|
||||||
for stream_type, streams in get_streams('streams'):
|
for stream_type, streams in get_streams('streams'):
|
||||||
if stream_type not in requested_formats:
|
if stream_type not in requested_formats:
|
||||||
continue
|
continue
|
||||||
for stream in streams.values():
|
for stream in streams.values():
|
||||||
hardsub_lang = stream.get('hardsub_locale') or ''
|
|
||||||
if hardsub_lang.lower() not in requested_hardsubs:
|
|
||||||
continue
|
|
||||||
format_id = join_nonempty(stream_type, format_field(stream, 'hardsub_locale', 'hardsub-%s'))
|
|
||||||
if not stream.get('url'):
|
if not stream.get('url'):
|
||||||
continue
|
continue
|
||||||
if stream_type.endswith('hls'):
|
hardsub_lang = stream.get('hardsub_locale') or ''
|
||||||
|
format_id = join_nonempty(stream_type, format_field(stream, 'hardsub_locale', 'hardsub-%s'))
|
||||||
|
available_formats[hardsub_lang] = (stream_type, format_id, hardsub_lang, stream['url'])
|
||||||
|
|
||||||
|
if '' in available_formats and 'all' not in requested_hardsubs:
|
||||||
|
full_format_langs = set(requested_hardsubs)
|
||||||
|
self.to_screen(
|
||||||
|
'To get all formats of a hardsub language, use '
|
||||||
|
'"--extractor-args crunchyrollbeta:hardsub=<language_code or all>". '
|
||||||
|
'See https://github.com/yt-dlp/yt-dlp#crunchyrollbeta for more info',
|
||||||
|
only_once=True)
|
||||||
|
else:
|
||||||
|
full_format_langs = set(map(str.lower, available_formats))
|
||||||
|
|
||||||
|
formats = []
|
||||||
|
for stream_type, format_id, hardsub_lang, stream_url in available_formats.values():
|
||||||
|
if stream_type.endswith('hls'):
|
||||||
|
if hardsub_lang.lower() in full_format_langs:
|
||||||
adaptive_formats = self._extract_m3u8_formats(
|
adaptive_formats = self._extract_m3u8_formats(
|
||||||
stream['url'], display_id, 'mp4', m3u8_id=format_id,
|
stream_url, display_id, 'mp4', m3u8_id=format_id,
|
||||||
fatal=False, note=f'Downloading {format_id} HLS manifest')
|
fatal=False, note=f'Downloading {format_id} HLS manifest')
|
||||||
elif stream_type.endswith('dash'):
|
else:
|
||||||
adaptive_formats = self._extract_mpd_formats(
|
adaptive_formats = (self._m3u8_meta_format(stream_url, ext='mp4', m3u8_id=format_id),)
|
||||||
stream['url'], display_id, mpd_id=format_id,
|
elif stream_type.endswith('dash'):
|
||||||
fatal=False, note=f'Downloading {format_id} MPD manifest')
|
adaptive_formats = self._extract_mpd_formats(
|
||||||
for f in adaptive_formats:
|
stream_url, display_id, mpd_id=format_id,
|
||||||
if f.get('acodec') != 'none':
|
fatal=False, note=f'Downloading {format_id} MPD manifest')
|
||||||
f['language'] = stream_response.get('audio_locale')
|
else:
|
||||||
f['quality'] = hardsub_preference(hardsub_lang.lower())
|
self.report_warning(f'Encountered unknown stream_type: {stream_type!r}', display_id, only_once=True)
|
||||||
formats.extend(adaptive_formats)
|
continue
|
||||||
|
for f in adaptive_formats:
|
||||||
|
if f.get('acodec') != 'none':
|
||||||
|
f['language'] = stream_response.get('audio_locale')
|
||||||
|
f['quality'] = hardsub_preference(hardsub_lang.lower())
|
||||||
|
formats.extend(adaptive_formats)
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user