diff options
author | Remita Amine <remitamine@gmail.com> | 2017-02-21 19:37:26 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2017-02-21 19:37:26 +0100 |
commit | abd29a2cedaab096e920ed5be9c480921cfacf0a (patch) | |
tree | 391e6d8edbcc035c373630378b51670343e72683 | |
parent | 31615ac279ac60fbd3925995de2eed69a4b3976a (diff) |
[crackle] use geo bypass mechanism
-rw-r--r-- | youtube_dl/extractor/crackle.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/crackle.py b/youtube_dl/extractor/crackle.py index 377fb45e9..f919ed208 100644 --- a/youtube_dl/extractor/crackle.py +++ b/youtube_dl/extractor/crackle.py @@ -6,6 +6,7 @@ from ..utils import int_or_none class CrackleIE(InfoExtractor): + _GEO_COUNTRIES = ['US'] _VALID_URL = r'(?:crackle:|https?://(?:(?:www|m)\.)?crackle\.com/(?:playlist/\d+/|(?:[^/]+/)+))(?P<id>\d+)' _TEST = { 'url': 'http://www.crackle.com/comedians-in-cars-getting-coffee/2498934', |