summaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-09-13 18:59:37 +0700
committerSergey M․ <dstftw@gmail.com>2020-09-13 18:59:37 +0700
commit95c98100155589e224c76fddb3d01dae0bd233ac (patch)
treebb432601cdc40d787eac7a7c7ee17f6bbfd18b64 /youtube_dl
parentb03eebdb6aab0f778293ed298543083b6ae76963 (diff)
[svtplay] Fix id extraction (closes #26576)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/svt.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/svt.py b/youtube_dl/extractor/svt.py
index 8e9ec2ca3..2f6887d86 100644
--- a/youtube_dl/extractor/svt.py
+++ b/youtube_dl/extractor/svt.py
@@ -231,7 +231,9 @@ class SVTPlayIE(SVTPlayBaseIE):
if not svt_id:
svt_id = self._search_regex(
(r'<video[^>]+data-video-id=["\']([\da-zA-Z-]+)',
- r'"content"\s*:\s*{.*?"id"\s*:\s*"([\da-zA-Z-]+)"'),
+ r'["\']videoSvtId["\']\s*:\s*["\']([\da-zA-Z-]+)',
+ r'"content"\s*:\s*{.*?"id"\s*:\s*"([\da-zA-Z-]+)"',
+ r'["\']svtId["\']\s*:\s*["\']([\da-zA-Z-]+)'),
webpage, 'video id')
return self._extract_by_video_id(svt_id, webpage)