mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[exctractor/digitalconcerthall] Fix extractor (#4105)
Authored by: ZhymabekRoman
This commit is contained in:
parent
4f2a58c9c5
commit
a79cba0c95
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ def _entries(self, items, language, **kwargs):
|
|||
})
|
||||
|
||||
m3u8_url = traverse_obj(
|
||||
stream_info, ('channel', lambda x: x.startswith('vod_mixed'), 'stream', 0, 'url'), get_all=False)
|
||||
stream_info, ('channel', lambda k, _: k.startswith('vod_mixed'), 'stream', 0, 'url'), get_all=False)
|
||||
formats = self._extract_m3u8_formats(m3u8_url, video_id, 'mp4', 'm3u8_native', fatal=False)
|
||||
self._sort_formats(formats)
|
||||
|
||||
|
|
Loading…
Reference in a new issue