Merge pull request #6731 from dstftw/strict-http-response
authorSergey M. <dstftw@gmail.com>
Wed, 2 Sep 2015 14:22:59 +0000 (20:22 +0600)
committerSergey M. <dstftw@gmail.com>
Wed, 2 Sep 2015 14:22:59 +0000 (20:22 +0600)
[utils] Strict HTTP responses (Closes #6727)

youtube_dl/extractor/rtve.py

index 82cd98ac742bf436b24fbbc77cac9a6fb8a44ff6..5b97d33caec2a08c79e648483ec67a1c288b6e4f 100644 (file)
@@ -6,7 +6,7 @@ import re
 import time
 
 from .common import InfoExtractor
-from ..compat import compat_urlparse
+from ..compat import compat_urllib_request, compat_urlparse
 from ..utils import (
     ExtractorError,
     float_or_none,
@@ -102,7 +102,9 @@ class RTVEALaCartaIE(InfoExtractor):
         if info['state'] == 'DESPU':
             raise ExtractorError('The video is no longer available', expected=True)
         png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/%s/videos/%s.png' % (self._manager, video_id)
-        png = self._download_webpage(png_url, video_id, 'Downloading url information')
+        png_request = compat_urllib_request.Request(png_url)
+        png_request.add_header('Referer', url)
+        png = self._download_webpage(png_request, video_id, 'Downloading url information')
         video_url = _decrypt_url(png)
         if not video_url.endswith('.f4m'):
             auth_url = video_url.replace(