diff options
author | Daniel Vogt <c0d3d3v@mag-keinen-spam.de> | 2023-03-11 16:10:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 20:40:32 +0530 |
commit | 89dbf0848370deaa55af88c3593a2a264124caf5 (patch) | |
tree | c600b056cc335d8254641606e18ffd4e74c19830 | |
parent | e6ab678e36c40ded0aae305bbb866cdab554d417 (diff) | |
download | hypervideo-pre-89dbf0848370deaa55af88c3593a2a264124caf5.tar.lz hypervideo-pre-89dbf0848370deaa55af88c3593a2a264124caf5.tar.xz hypervideo-pre-89dbf0848370deaa55af88c3593a2a264124caf5.zip |
[extractor/opencast] Fix format bug (#6512)
Authored by: C0D3D3V
-rw-r--r-- | yt_dlp/extractor/opencast.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/opencast.py b/yt_dlp/extractor/opencast.py index 235ca341c..1fafd9afb 100644 --- a/yt_dlp/extractor/opencast.py +++ b/yt_dlp/extractor/opencast.py @@ -55,9 +55,9 @@ class OpencastBaseIE(InfoExtractor): transport = track.get('transport') if transport == 'DASH' or ext == 'mpd': - formats.extend(self._extract_mpd_formats_and_subtitles(href, video_id, mpd_id='dash', fatal=False)) + formats.extend(self._extract_mpd_formats(href, video_id, mpd_id='dash', fatal=False)) elif transport == 'HLS' or ext == 'm3u8': - formats.extend(self._extract_m3u8_formats_and_subtitles( + formats.extend(self._extract_m3u8_formats( href, video_id, m3u8_id='hls', entry_protocol='m3u8_native', fatal=False)) elif transport == 'HDS' or ext == 'f4m': formats.extend(self._extract_f4m_formats(href, video_id, f4m_id='hds', fatal=False)) |