浏览代码

Merge remote-tracking branch 'dstftw/download-referer-header' (closes #2628)

Jaime Marquínez Ferrándiz 11 年之前
父节点
当前提交
98acdc895b
共有 2 个文件被更改,包括 3 次插入0 次删除
  1. 2 0
      youtube_dl/downloader/http.py
  2. 1 0
      youtube_dl/extractor/auengine.py

+ 2 - 0
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)
 

+ 1 - 0
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',
         }