aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/svt.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-08-19 07:11:24 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-08-23 00:50:40 +0530
commit5ad28e7ffd41deccba33776c1609aa7855601739 (patch)
tree19c70ba4188e9f12815fa086cbdf9025107c2e64 /yt_dlp/extractor/svt.py
parentf79ec47d71c3d28e19bc68c1d61ae149e74fae2f (diff)
downloadhypervideo-pre-5ad28e7ffd41deccba33776c1609aa7855601739.tar.lz
hypervideo-pre-5ad28e7ffd41deccba33776c1609aa7855601739.tar.xz
hypervideo-pre-5ad28e7ffd41deccba33776c1609aa7855601739.zip
[extractor] Common function `_match_valid_url`
Diffstat (limited to 'yt_dlp/extractor/svt.py')
-rw-r--r--yt_dlp/extractor/svt.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/yt_dlp/extractor/svt.py b/yt_dlp/extractor/svt.py
index 4b6284a8d..38e0086b3 100644
--- a/yt_dlp/extractor/svt.py
+++ b/yt_dlp/extractor/svt.py
@@ -119,7 +119,7 @@ class SVTIE(SVTBaseIE):
return mobj.group('url')
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
+ mobj = self._match_valid_url(url)
widget_id = mobj.group('widget_id')
article_id = mobj.group('id')
@@ -225,7 +225,7 @@ class SVTPlayIE(SVTPlayBaseIE):
return info_dict
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
+ mobj = self._match_valid_url(url)
video_id = mobj.group('id')
svt_id = mobj.group('svt_id') or mobj.group('modal_id')
@@ -301,7 +301,7 @@ class SVTSeriesIE(SVTPlayBaseIE):
return False if SVTIE.suitable(url) or SVTPlayIE.suitable(url) else super(SVTSeriesIE, cls).suitable(url)
def _real_extract(self, url):
- series_slug, season_id = re.match(self._VALID_URL, url).groups()
+ series_slug, season_id = self._match_valid_url(url).groups()
series = self._download_json(
'https://api.svt.se/contento/graphql', series_slug,
@@ -400,7 +400,7 @@ class SVTPageIE(InfoExtractor):
return False if SVTIE.suitable(url) or SVTPlayIE.suitable(url) else super(SVTPageIE, cls).suitable(url)
def _real_extract(self, url):
- path, display_id = re.match(self._VALID_URL, url).groups()
+ path, display_id = self._match_valid_url(url).groups()
article = self._download_json(
'https://api.svt.se/nss-api/page/' + path, display_id,