Browse Source

[francetv] Force m3u8 formats extension to mp4 (Closes #3997)

Sergey M․ 11 years ago
parent
commit
6bf6962062
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/francetv.py

+ 1 - 1
youtube_dl/extractor/francetv.py

@@ -46,7 +46,7 @@ class FranceTVBaseInfoExtractor(InfoExtractor):
                         f4m_format['preference'] = 1
                         f4m_format['preference'] = 1
                     formats.extend(f4m_formats)
                     formats.extend(f4m_formats)
             elif video_url.endswith('.m3u8'):
             elif video_url.endswith('.m3u8'):
-                formats.extend(self._extract_m3u8_formats(video_url, video_id))
+                formats.extend(self._extract_m3u8_formats(video_url, video_id, 'mp4'))
             elif video_url.startswith('rtmp'):
             elif video_url.startswith('rtmp'):
                 formats.append({
                 formats.append({
                     'url': video_url,
                     'url': video_url,