mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-09 22:39:32 +01:00
[francetv] Sign m3u8 manifest URLs (closes #15565)
they seem to be required now, else we get 403 errors.
This commit is contained in:
parent
a072a12e24
commit
818df33fda
@ -64,9 +64,13 @@ def _extract_video(self, video_id, catalogue=None):
|
|||||||
f4m_url + '&hdcore=3.7.0&plugin=aasp-3.7.0.39.44',
|
f4m_url + '&hdcore=3.7.0&plugin=aasp-3.7.0.39.44',
|
||||||
video_id, f4m_id=format_id, fatal=False))
|
video_id, f4m_id=format_id, fatal=False))
|
||||||
elif ext == 'm3u8':
|
elif ext == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
m3u8_url = self._download_webpage(
|
||||||
video_url, video_id, 'mp4', entry_protocol='m3u8_native',
|
'http://hdfauth.francetv.fr/esi/TA?url=%s' % video_url,
|
||||||
m3u8_id=format_id, fatal=False))
|
video_id, 'Downloading m3u8 token', fatal=False)
|
||||||
|
if m3u8_url:
|
||||||
|
formats.extend(self._extract_m3u8_formats(
|
||||||
|
m3u8_url, video_id, 'mp4', entry_protocol='m3u8_native',
|
||||||
|
m3u8_id=format_id, fatal=False))
|
||||||
elif video_url.startswith('rtmp'):
|
elif video_url.startswith('rtmp'):
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
|
Loading…
Reference in New Issue
Block a user