Compare commits

...

2 Commits

Author SHA1 Message Date
dirkf
1fcdc82b92
Sort formats! 2023-12-02 14:53:36 +00:00
dirkf
11e1e1747d
Use native M3U8 downloader 2023-12-02 13:04:49 +00:00

View File

@ -40,7 +40,9 @@ class TelewebionIE(InfoExtractor):
m3u8_url = 'https://cdna.telewebion.com/{0}/episode/{1}/playlist.m3u8'.format(channel_id, video_id)
formats = self._extract_m3u8_formats(
m3u8_url, video_id, ext='mp4', m3u8_id='hls')
m3u8_url, video_id, ext='mp4', m3u8_id='hls',
entry_protocol='m3u8_native')
self._sort_formats(formats)
return {
'id': video_id,