projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77c8ebe
)
[tvplay] Bypass geo restriction
author
Remita Amine
<remitamine@gmail.com>
Sat, 1 Apr 2017 06:26:40 +0000
(07:26 +0100)
committer
Remita Amine
<remitamine@gmail.com>
Sat, 1 Apr 2017 06:26:40 +0000
(07:26 +0100)
youtube_dl/extractor/tvplay.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/tvplay.py
b/youtube_dl/extractor/tvplay.py
index 3eda0a399cf602d8e717c75e392a18e9dac82ec9..99ff82a5d4f5c8c9f99b1d415edd9b2c4c3c0d7f 100644
(file)
--- 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')