[ie/crunchyroll] Extract `vo_adaptive_hls` formats by default (#9447)

Closes #9439
Authored by: bashonly
This commit is contained in:
bashonly 2024-03-14 16:42:35 -05:00 committed by GitHub
parent 8c05b3ebae
commit be77923ffe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class CrunchyrollBaseIE(InfoExtractor):
return result
def _extract_formats(self, stream_response, display_id=None):
requested_formats = self._configuration_arg('format') or ['adaptive_hls']
requested_formats = self._configuration_arg('format') or ['vo_adaptive_hls']
available_formats = {}
for stream_type, streams in traverse_obj(
stream_response, (('streams', ('data', 0)), {dict.items}, ...)):