mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[rtve] Fix extraction
Skip live stream test, we can't use the f4m manifest yet
This commit is contained in:
parent
6d593c3276
commit
cc57bd33a8
1 changed files with 14 additions and 1 deletions
|
@ -74,7 +74,8 @@ class RTVEALaCartaIE(InfoExtractor):
|
||||||
'id': '1694255',
|
'id': '1694255',
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'title': 'TODO',
|
'title': 'TODO',
|
||||||
}
|
},
|
||||||
|
'skip': 'The f4m manifest can\'t be used yet',
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
@ -86,6 +87,18 @@ def _real_extract(self, url):
|
||||||
png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/default/videos/%s.png' % video_id
|
png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/default/videos/%s.png' % video_id
|
||||||
png = self._download_webpage(png_url, video_id, 'Downloading url information')
|
png = self._download_webpage(png_url, video_id, 'Downloading url information')
|
||||||
video_url = _decrypt_url(png)
|
video_url = _decrypt_url(png)
|
||||||
|
if not video_url.endswith('.f4m'):
|
||||||
|
auth_url = video_url.replace(
|
||||||
|
'resources/', 'auth/resources/'
|
||||||
|
).replace('.net.rtve', '.multimedia.cdn.rtve')
|
||||||
|
video_path = self._download_webpage(
|
||||||
|
auth_url, video_id, 'Getting video url')
|
||||||
|
# Use mvod.akcdn instead of flash.akamaihd.multimedia.cdn to get
|
||||||
|
# the right Content-Length header and the mp4 format
|
||||||
|
video_url = (
|
||||||
|
'http://mvod.akcdn.rtve.es/{0}&v=2.6.8'
|
||||||
|
'&fp=MAC%2016,0,0,296&r=MRUGG&g=OEOJWFXNFGCP'.format(video_path)
|
||||||
|
)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
|
|
Loading…
Reference in a new issue