diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-02-04 04:17:45 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-02-04 04:17:45 +0700 |
commit | 1f0910bc2742b16be8425841d5ed6a0fd96f82a4 (patch) | |
tree | 6eaf8871640064f4d36a9e951435205030714b0e | |
parent | e22ff4e35681a600ed61918beab8ed316728ec39 (diff) |
[svtplay] Fix video id extraction (closes #28058)
-rw-r--r-- | youtube_dl/extractor/svt.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/svt.py b/youtube_dl/extractor/svt.py index a0b6ef4db..4acc29fce 100644 --- a/youtube_dl/extractor/svt.py +++ b/youtube_dl/extractor/svt.py @@ -255,8 +255,10 @@ class SVTPlayIE(SVTPlayBaseIE): svt_id = self._search_regex( (r'<video[^>]+data-video-id=["\']([\da-zA-Z-]+)', r'["\']videoSvtId["\']\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-]+)'), + r'["\']svtId["\']\s*:\s*["\']([\da-zA-Z-]+)', + r'["\']svtId\\?["\']\s*:\s*\\?["\']([\da-zA-Z-]+)'), webpage, 'video id') info_dict = self._extract_by_video_id(svt_id, webpage) |