diff options
author | Sergey M․ <[email protected]> | 2019-09-19 01:11:52 +0700 |
---|---|---|
committer | Sergey M․ <[email protected]> | 2019-09-19 01:11:52 +0700 |
commit | 9cf26b6e1d0658eb0b252872ef011d765b8341a5 (patch) | |
tree | 4e99336682d04e193b09e2c3462ff270bbbce39e | |
parent | 20e11b70ac48fd5bffae194d829f7e31fcc65fca (diff) | |
download | youtube-dl-9cf26b6e1d0658eb0b252872ef011d765b8341a5.tar.gz youtube-dl-9cf26b6e1d0658eb0b252872ef011d765b8341a5.zip |
[zdf] Bypass geo restriction
-rw-r--r-- | youtube_dl/extractor/zdf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/zdf.py b/youtube_dl/extractor/zdf.py index afa3f6c47..145c123a4 100644 --- a/youtube_dl/extractor/zdf.py +++ b/youtube_dl/extractor/zdf.py @@ -41,6 +41,7 @@ class ZDFBaseIE(InfoExtractor): class ZDFIE(ZDFBaseIE): _VALID_URL = r'https?://www\.zdf\.de/(?:[^/]+/)*(?P<id>[^/?]+)\.html' _QUALITIES = ('auto', 'low', 'med', 'high', 'veryhigh') + _GEO_COUNTRIES = ['DE'] _TESTS = [{ 'url': 'https://www.zdf.de/dokumentation/terra-x/die-magie-der-farben-von-koenigspurpur-und-jeansblau-100.html', |