about summary refs log tree commit diff
path: root/youtube_dl/extractor/rtve.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2016-07-13 20:21:00 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2016-07-13 20:23:27 +0200
commitc39b2ed990105e640456f126321ef3d771884405 (patch)
tree2f48f3149f0b58f24f73ba8ca0d774209948a94a /youtube_dl/extractor/rtve.py
parent35ec86689c95fdded47ea65352392516951315c3 (diff)
downloadyoutube-dl-c39b2ed990105e640456f126321ef3d771884405.tar.gz
youtube-dl-c39b2ed990105e640456f126321ef3d771884405.tar.xz
youtube-dl-c39b2ed990105e640456f126321ef3d771884405.zip
[rtve] Fix extraction (#10076)
For http://www.rtve.es/alacarta/videos/documentos-tv/documentos-tv-revolucion-del-movil/3069778/ using 'auth/resources' fails, and other URLs seem to work fine.
Diffstat (limited to 'youtube_dl/extractor/rtve.py')
-rw-r--r--youtube_dl/extractor/rtve.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py
index f11e3588b..de35e07d9 100644
--- a/youtube_dl/extractor/rtve.py
+++ b/youtube_dl/extractor/rtve.py
@@ -113,9 +113,7 @@ class RTVEALaCartaIE(InfoExtractor):
         png = self._download_webpage(png_request, video_id, 'Downloading url information')
         video_url = _decrypt_url(png)
         if not video_url.endswith('.f4m'):
-            video_url = video_url.replace(
-                'resources/', 'auth/resources/'
-            ).replace('.net.rtve', '.multimedia.cdn.rtve')
+            video_url = video_url.replace('.net.rtve', '.multimedia.cdn.rtve')
 
         subtitles = None
         if info.get('sbtFile') is not None: