mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[canalplus] Fix m3u8 videos extension
This commit is contained in:
parent
10952eb2cf
commit
660f9459da
@ -106,7 +106,7 @@ def _real_extract(self, url):
|
|||||||
continue
|
continue
|
||||||
format_id = fmt.tag
|
format_id = fmt.tag
|
||||||
if format_id == 'HLS':
|
if format_id == 'HLS':
|
||||||
hls_formats = self._extract_m3u8_formats(format_url, video_id, 'flv')
|
hls_formats = self._extract_m3u8_formats(format_url, video_id, 'mp4')
|
||||||
for fmt in hls_formats:
|
for fmt in hls_formats:
|
||||||
fmt['preference'] = preference(format_id)
|
fmt['preference'] = preference(format_id)
|
||||||
formats.extend(hls_formats)
|
formats.extend(hls_formats)
|
||||||
|
Loading…
Reference in New Issue
Block a user