[tvplay] Bypass geo restriction

This commit is contained in:
Remita Amine 2017-04-01 07:26:40 +01:00
parent 77c8ebe631
commit be61efdf17
1 changed files with 5 additions and 1 deletions

View File

@ -225,7 +225,11 @@ class TVPlayIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
geo_country = self._search_regex(
r'https?://[^/]+\.([a-z]{2})', url,
'geo country', default=None)
if geo_country:
self._initialize_geo_bypass([geo_country.upper()])
video = self._download_json(
'http://playapi.mtgx.tv/v3/videos/%s' % video_id, video_id, 'Downloading video JSON')