diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-05-02 07:18:01 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-05-02 07:20:59 +0700 |
commit | 5f95927a62a533b9e616abb5f1481cedeaa16a4a (patch) | |
tree | 13e1cbddf07dd4259211ede5df0d2705604ca5b1 /youtube_dl/extractor/anvato.py | |
parent | a93ce61bd5cbe7779e4eff0f8ab74a8a02211285 (diff) |
Improve geo bypass mechanism
* Introduce geo bypass context
* Add ability to bypass based on IP blocks in CIDR notation
* Introduce --geo-bypass-ip-block
Diffstat (limited to 'youtube_dl/extractor/anvato.py')
-rw-r--r-- | youtube_dl/extractor/anvato.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/anvato.py b/youtube_dl/extractor/anvato.py index 7a29cd2c6..f6a78eb5d 100644 --- a/youtube_dl/extractor/anvato.py +++ b/youtube_dl/extractor/anvato.py @@ -277,7 +277,9 @@ class AnvatoIE(InfoExtractor): def _real_extract(self, url): url, smuggled_data = unsmuggle_url(url, {}) - self._initialize_geo_bypass(smuggled_data.get('geo_countries')) + self._initialize_geo_bypass({ + 'countries': smuggled_data.get('geo_countries'), + }) mobj = re.match(self._VALID_URL, url) access_key, video_id = mobj.group('access_key_or_mcp', 'id') |