diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-01-30 23:05:06 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-01-30 23:46:55 +0100 |
commit | cc57bd33a803a061ac0bbe971088fb1ef78be82b (patch) | |
tree | 0df4308def98b9953193179218060c687d17bd4c /youtube_dl/extractor/rtve.py | |
parent | 6d593c3276da6a0a1ad738c779b87a1998c5b06b (diff) |
[rtve] Fix extraction
Skip live stream test, we can't use the f4m manifest yet
Diffstat (limited to 'youtube_dl/extractor/rtve.py')
-rw-r--r-- | youtube_dl/extractor/rtve.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py index 0ce22d60c..9e8688fbf 100644 --- a/youtube_dl/extractor/rtve.py +++ b/youtube_dl/extractor/rtve.py @@ -74,7 +74,8 @@ class RTVEALaCartaIE(InfoExtractor): 'id': '1694255', 'ext': 'flv', 'title': 'TODO', - } + }, + 'skip': 'The f4m manifest can\'t be used yet', }] def _real_extract(self, url): @@ -86,6 +87,18 @@ class RTVEALaCartaIE(InfoExtractor): 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') 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 { 'id': video_id, |