diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-11-05 16:12:56 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-11-05 16:12:56 +0700 |
commit | 6e71bbf4abc729cae3b0e428c3bb321690c9e485 (patch) | |
tree | ddc3495c026e8e2804b8dcea280eefab58da5616 /youtube_dl/extractor | |
parent | 181e381fda4ddb9083f3834a8bd1bab72c937545 (diff) |
[hotstar] Bypass geo restriction (closes #14672)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/hotstar.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/hotstar.py b/youtube_dl/extractor/hotstar.py index 3a7a66a34..9be958be6 100644 --- a/youtube_dl/extractor/hotstar.py +++ b/youtube_dl/extractor/hotstar.py @@ -11,6 +11,7 @@ from ..utils import ( class HotStarIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?hotstar\.com/(?:.+?[/-])?(?P<id>\d{10})' + _GEO_COUNTRIES = ['IN'] _TESTS = [{ 'url': 'http://www.hotstar.com/on-air-with-aib--english-1000076273', 'info_dict': { |