[canalplus] Fix m3u8 videos extension

This commit is contained in:
Sergey M․ 2015-07-24 00:17:36 +06:00
parent 10952eb2cf
commit 660f9459da
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class CanalplusIE(InfoExtractor):
continue
format_id = fmt.tag
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:
fmt['preference'] = preference(format_id)
formats.extend(hls_formats)