diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-03-26 15:20:11 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-03-26 15:20:11 +0100 |
commit | 98acdc895bb6795efa1b5890a7af1b6e662051bd (patch) | |
tree | d45d2255ab33fbb0701d35bd882ddce1e2e15468 /youtube_dl | |
parent | bd3b5b8b10f4924e1fd810c0c1894e75b35a2db8 (diff) | |
parent | a59e40a1ea7e604e494f58006c92b58e7e3c953f (diff) |
Merge remote-tracking branch 'dstftw/download-referer-header' (closes #2628)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/downloader/http.py | 2 | ||||
-rw-r--r-- | youtube_dl/extractor/auengine.py | 1 |
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', } |