aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/francetv.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-19 21:51:06 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-19 21:51:06 +0600
commit632cbb8efa32ef704219a769972fdeae04577ab8 (patch)
tree00d4997806b6515dd042bba1344cfed51a9b1939 /youtube_dl/extractor/francetv.py
parent789a12aaafe7036a155435d9c93d062309f547b7 (diff)
downloadyoutube-dl-632cbb8efa32ef704219a769972fdeae04577ab8.zip
youtube-dl-632cbb8efa32ef704219a769972fdeae04577ab8.tar.gz
youtube-dl-632cbb8efa32ef704219a769972fdeae04577ab8.tar.bz2
[francetv] Fix f4m extraction completely
Diffstat (limited to 'youtube_dl/extractor/francetv.py')
-rw-r--r--youtube_dl/extractor/francetv.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/francetv.py b/youtube_dl/extractor/francetv.py
index 11db6d9..746ab9d 100644
--- a/youtube_dl/extractor/francetv.py
+++ b/youtube_dl/extractor/francetv.py
@@ -62,7 +62,8 @@ class FranceTVBaseInfoExtractor(InfoExtractor):
'http://hdfauth.francetv.fr/esi/TA?url=%s' % video_url,
video_id, 'Downloading f4m manifest token', fatal=False)
if f4m_url:
- formats.extend(self._extract_f4m_formats(f4m_url, video_id, 1, format_id))
+ formats.extend(self._extract_f4m_formats(
+ f4m_url + '&hdcore=3.7.0&plugin=aasp-3.7.0.39.44', video_id, 1, format_id))
elif ext == 'm3u8':
formats.extend(self._extract_m3u8_formats(video_url, video_id, 'mp4', m3u8_id=format_id))
elif video_url.startswith('rtmp'):