summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-03-26 15:20:11 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-03-26 15:20:11 +0100
commit98acdc895bb6795efa1b5890a7af1b6e662051bd (patch)
treed45d2255ab33fbb0701d35bd882ddce1e2e15468
parentbd3b5b8b10f4924e1fd810c0c1894e75b35a2db8 (diff)
parenta59e40a1ea7e604e494f58006c92b58e7e3c953f (diff)
downloadyoutube-dl-98acdc895bb6795efa1b5890a7af1b6e662051bd.tar.gz
youtube-dl-98acdc895bb6795efa1b5890a7af1b6e662051bd.tar.xz
youtube-dl-98acdc895bb6795efa1b5890a7af1b6e662051bd.zip
Merge remote-tracking branch 'dstftw/download-referer-header' (closes #2628)
-rw-r--r--youtube_dl/downloader/http.py2
-rw-r--r--youtube_dl/extractor/auengine.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py
index 348097dab..cc8b9c9a7 100644
--- a/youtube_dl/downloader/http.py
+++ b/youtube_dl/downloader/http.py
@@ -23,6 +23,8 @@ class HttpFD(FileDownloader):
         headers = {'Youtubedl-no-compression': 'True'}
         if 'user_agent' in info_dict:
             headers['Youtubedl-user-agent'] = info_dict['user_agent']
+        if 'http_referer' in info_dict:
+            headers['Referer'] = info_dict['http_referer']
         basic_request = compat_urllib_request.Request(url, None, headers)
         request = compat_urllib_request.Request(url, None, headers)
 
diff --git a/youtube_dl/extractor/auengine.py b/youtube_dl/extractor/auengine.py
index 94caad0cf..20bf12550 100644
--- a/youtube_dl/extractor/auengine.py
+++ b/youtube_dl/extractor/auengine.py
@@ -51,4 +51,5 @@ class AUEngineIE(InfoExtractor):
             'url': video_url,
             'title': title,
             'thumbnail': thumbnail,
+            'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
         }