From a4713ba96d8b4905e9e8c37fb3b0c1826ae28e25 Mon Sep 17 00:00:00 2001 From: Anant Murmu Date: Wed, 19 Oct 2022 12:25:28 +0530 Subject: [PATCH] [extractor/voot] Improve `_VALID_URL` (#5283) Authored by: freezboltz --- yt_dlp/extractor/voot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/yt_dlp/extractor/voot.py b/yt_dlp/extractor/voot.py index 7ac38a813..173556e66 100644 --- a/yt_dlp/extractor/voot.py +++ b/yt_dlp/extractor/voot.py @@ -14,7 +14,7 @@ class VootIE(InfoExtractor): voot:| https?://(?:www\.)?voot\.com/? (?: - movies/[^/]+/| + movies?/[^/]+/| (?:shows|kids)/(?:[^/]+/){4} ) ) @@ -47,6 +47,9 @@ class VootIE(InfoExtractor): }, { 'url': 'https://www.voot.com/movies/pandavas-5/424627', 'only_matching': True, + }, { + 'url': 'https://www.voot.com/movie/fight-club/621842', + 'only_matching': True, }] def _real_extract(self, url):