youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 9f4ec3de2557e6277f0d3cf2118250d005419a40
parent 96a0bbdd0d3f87313b0d517fca94e60ed2944dd9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed,  7 Feb 2018 21:52:15 +0700

[gameinformer] Use geo verification headers

Diffstat:
Myoutube_dl/extractor/gameinformer.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/gameinformer.py b/youtube_dl/extractor/gameinformer.py @@ -23,7 +23,8 @@ class GameInformerIE(InfoExtractor): def _real_extract(self, url): display_id = self._match_id(url) - webpage = self._download_webpage(url, display_id) + webpage = self._download_webpage( + url, display_id, headers=self.geo_verification_headers()) brightcove_id = self._search_regex( [r'<[^>]+\bid=["\']bc_(\d+)', r"getVideo\('[^']+video_id=(\d+)"], webpage, 'brightcove id')