diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-02-20 23:17:19 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-02-20 23:17:19 +0700 |
commit | da42ff066811490064e0c3039b9db5c0e9a69f58 (patch) | |
tree | 1d84d51bcd915dfb95c4c133955ba5e42b708035 /youtube_dl | |
parent | 82f662182b9ade630b37af81ebf8ae7ae6468898 (diff) |
[iprima] Improve geo restriction detection and disable geo bypass
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/iprima.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/youtube_dl/extractor/iprima.py b/youtube_dl/extractor/iprima.py index 7afa2def0..a29e6a5ba 100644 --- a/youtube_dl/extractor/iprima.py +++ b/youtube_dl/extractor/iprima.py @@ -13,6 +13,7 @@ from ..utils import ( class IPrimaIE(InfoExtractor): _VALID_URL = r'https?://play\.iprima\.cz/(?:.+/)?(?P<id>[^?#]+)' + _GEO_BYPASS = False _TESTS = [{ 'url': 'http://play.iprima.cz/gondici-s-r-o-33', @@ -28,6 +29,10 @@ class IPrimaIE(InfoExtractor): }, { 'url': 'http://play.iprima.cz/particka/particka-92', 'only_matching': True, + }, { + # geo restricted + 'url': 'http://play.iprima.cz/closer-nove-pripady/closer-nove-pripady-iv-1', + 'only_matching': True, }] def _real_extract(self, url): @@ -83,7 +88,7 @@ class IPrimaIE(InfoExtractor): extract_formats(src) if not formats and '>GEO_IP_NOT_ALLOWED<' in playerpage: - self.raise_geo_restricted() + self.raise_geo_restricted(countries=['CZ']) self._sort_formats(formats) |