summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-10-22 01:24:04 +0700
committerSergey M․ <dstftw@gmail.com>2014-10-22 01:24:04 +0700
commit6bf6962062ff674013d8651e190998b506c681e5 (patch)
treea3464268b2894a28e797b6d0a50ac9def2652c14
parent40bca5f92780586f0de085f718bb2aa9ee94b6fa (diff)
downloadyoutube-dl-6bf6962062ff674013d8651e190998b506c681e5.tar.gz
youtube-dl-6bf6962062ff674013d8651e190998b506c681e5.tar.xz
youtube-dl-6bf6962062ff674013d8651e190998b506c681e5.zip
[francetv] Force m3u8 formats extension to mp4 (Closes #3997)
-rw-r--r--youtube_dl/extractor/francetv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/francetv.py b/youtube_dl/extractor/francetv.py
index 0b3374d97..07165e330 100644
--- a/youtube_dl/extractor/francetv.py
+++ b/youtube_dl/extractor/francetv.py
@@ -46,7 +46,7 @@ class FranceTVBaseInfoExtractor(InfoExtractor):
                         f4m_format['preference'] = 1
                     formats.extend(f4m_formats)
             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'):
                 formats.append({
                     'url': video_url,