diff options
author | Remita Amine <remitamine@gmail.com> | 2017-04-01 07:26:40 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2017-04-01 07:26:40 +0100 |
commit | be61efdf1754d026f270f6d87446040231d56954 (patch) | |
tree | b513169da266a3b83fb662100f1ce510d0e3bc87 /youtube_dl/extractor/tvplay.py | |
parent | 77c8ebe6318055cc34eaedca63f4866c4c47437a (diff) |
[tvplay] Bypass geo restriction
Diffstat (limited to 'youtube_dl/extractor/tvplay.py')
-rw-r--r-- | youtube_dl/extractor/tvplay.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tvplay.py b/youtube_dl/extractor/tvplay.py index 3eda0a399..99ff82a5d 100644 --- a/youtube_dl/extractor/tvplay.py +++ b/youtube_dl/extractor/tvplay.py @@ -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') |