1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-05 11:36:12 +02:00

[ie/Arkena] Fix dash extraction

This commit is contained in:
sepro 2024-06-09 16:54:48 +02:00
parent 1343104d2f
commit e8712548a8

View File

@ -131,8 +131,8 @@ def _real_extract(self, url):
formats.extend(self._extract_f4m_formats(
href, video_id, f4m_id='hds', fatal=False))
elif mime_type == 'application/dash+xml':
formats.extend(self._extract_f4m_formats(
href, video_id, f4m_id='hds', fatal=False))
formats.extend(self._extract_mpd_formats(
href, video_id, mpd_id='dash', fatal=False))
elif mime_type == 'application/vnd.ms-sstr+xml':
formats.extend(self._extract_ism_formats(
href, video_id, ism_id='mss', fatal=False))