From 11e1e1747da9ecdb482eb606ef6cf0730db51676 Mon Sep 17 00:00:00 2001 From: dirkf Date: Sat, 2 Dec 2023 13:04:49 +0000 Subject: [PATCH] Use native M3U8 downloader --- youtube_dl/extractor/telewebion.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/telewebion.py b/youtube_dl/extractor/telewebion.py index 196597351..a7380db69 100644 --- a/youtube_dl/extractor/telewebion.py +++ b/youtube_dl/extractor/telewebion.py @@ -40,7 +40,8 @@ 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') return { 'id': video_id,