aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/francetv.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-06-15 21:30:27 +0600
committerSergey M․ <dstftw@gmail.com>2015-06-15 21:30:27 +0600
commit99e6833c85868b78df7c810603ffdccdaeb4eaf0 (patch)
tree9532c064c3e3e73e25b72714c4c17b9395eb31a0 /youtube_dl/extractor/francetv.py
parent02175a7986c4223a0ed27a872c1ca16926913e05 (diff)
downloadyoutube-dl-99e6833c85868b78df7c810603ffdccdaeb4eaf0.tar.xz
[francetv] Update f4m manifest token URL (Closes #5981, Closes #5989)
Diffstat (limited to 'youtube_dl/extractor/francetv.py')
-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 edf555b29..db0bbec1e 100644
--- a/youtube_dl/extractor/francetv.py
+++ b/youtube_dl/extractor/francetv.py
@@ -60,7 +60,7 @@ class FranceTVBaseInfoExtractor(InfoExtractor):
continue
video_url_parsed = compat_urllib_parse_urlparse(video_url)
f4m_url = self._download_webpage(
- 'http://hdfauth.francetv.fr/esi/urltokengen2.html?url=%s' % video_url_parsed.path,
+ 'http://hdfauth.francetv.fr/esi/TA?url=%s' % video_url_parsed.path,
video_id, 'Downloading f4m manifest token', fatal=False)
if f4m_url:
formats.extend(self._extract_f4m_formats(f4m_url, video_id, 1, format_id))