diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-03-14 16:42:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 21:42:35 +0000 |
commit | be77923ffe842f667971019460f6005f3cad01eb (patch) | |
tree | 78445421f7ef60a84a94381012c7b44093e3899a | |
parent | 8c05b3ebae23c5b444857549a85b84004c01a536 (diff) |
[ie/crunchyroll] Extract `vo_adaptive_hls` formats by default (#9447)
Closes #9439
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/crunchyroll.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/crunchyroll.py b/yt_dlp/extractor/crunchyroll.py index 8d997debf..d35e9995a 100644 --- a/yt_dlp/extractor/crunchyroll.py +++ b/yt_dlp/extractor/crunchyroll.py @@ -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}, ...)): |