mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-22 22:34:01 -07:00
Use native HLS downloader
This commit is contained in:
parent
0567dd5b99
commit
632d58cfb9
1 changed files with 2 additions and 1 deletions
|
@ -57,7 +57,8 @@ class CallinIE(InfoExtractor):
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
episode.get('m3u8'), video_id, 'mp4', fatal=False))
|
episode.get('m3u8'), video_id, 'mp4',
|
||||||
|
entry_protocol='m3u8_native', fatal=False))
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
channel = try_get(episode, lambda x: x['show']['title'], compat_str)
|
channel = try_get(episode, lambda x: x['show']['title'], compat_str)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue