[youtube] fix hd720 format position
[youtube-dl] / youtube_dl / extractor / gameinformer.py
index 239c1961d59865fdb44cafaeae049a9420921570..a2920a793ba45d3fef47eebba26bc3c19517b63c 100644 (file)
@@ -23,11 +23,11 @@ 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')
         return self.url_result(
             self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew',
             brightcove_id)
-