summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-10-15 06:11:02 +0700
committerSergey M․ <dstftw@gmail.com>2017-10-15 06:11:02 +0700
commitee093a0ea04d973cc6dbd0d53b57c976a9e68dad (patch)
tree6a9144dd025bcd9189935b5b941741aeda7066ee
parent9bb2c7673e45aee95023d980ff307d7a90ac58c0 (diff)
downloadyoutube-dl-ee093a0ea04d973cc6dbd0d53b57c976a9e68dad.tar.gz
youtube-dl-ee093a0ea04d973cc6dbd0d53b57c976a9e68dad.tar.xz
youtube-dl-ee093a0ea04d973cc6dbd0d53b57c976a9e68dad.zip
[anvato] Add ability to bypass geo restriction
-rw-r--r--youtube_dl/extractor/anvato.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/anvato.py b/youtube_dl/extractor/anvato.py
index e443ecff6..7a29cd2c6 100644
--- a/youtube_dl/extractor/anvato.py
+++ b/youtube_dl/extractor/anvato.py
@@ -18,6 +18,7 @@ from ..utils import (
     int_or_none,
     strip_jsonp,
     unescapeHTML,
+    unsmuggle_url,
 )
 
 
@@ -275,6 +276,9 @@ class AnvatoIE(InfoExtractor):
             anvplayer_data['accessKey'], anvplayer_data['video'])
 
     def _real_extract(self, url):
+        url, smuggled_data = unsmuggle_url(url, {})
+        self._initialize_geo_bypass(smuggled_data.get('geo_countries'))
+
         mobj = re.match(self._VALID_URL, url)
         access_key, video_id = mobj.group('access_key_or_mcp', 'id')
         if access_key not in self._ANVACK_TABLE: