diff options
Diffstat (limited to 'yt_dlp/extractor/voot.py')
-rw-r--r-- | yt_dlp/extractor/voot.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yt_dlp/extractor/voot.py b/yt_dlp/extractor/voot.py index b19a27934..ef77bedd2 100644 --- a/yt_dlp/extractor/voot.py +++ b/yt_dlp/extractor/voot.py @@ -81,6 +81,7 @@ class VootBaseIE(InfoExtractor): class VootIE(VootBaseIE): + _WORKING = False _VALID_URL = r'''(?x) (?: voot:| @@ -169,6 +170,7 @@ class VootIE(VootBaseIE): class VootSeriesIE(VootBaseIE): + _WORKING = False _VALID_URL = r'https?://(?:www\.)?voot\.com/shows/[^/]+/(?P<id>\d{3,})' _TESTS = [{ 'url': 'https://www.voot.com/shows/chakravartin-ashoka-samrat/100002', |