summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2021-02-04 04:17:45 +0700
committerSergey M․ <dstftw@gmail.com>2021-02-04 04:17:45 +0700
commit1f0910bc2742b16be8425841d5ed6a0fd96f82a4 (patch)
tree6eaf8871640064f4d36a9e951435205030714b0e
parente22ff4e35681a600ed61918beab8ed316728ec39 (diff)
downloadyoutube-dl-1f0910bc2742b16be8425841d5ed6a0fd96f82a4.tar.gz
youtube-dl-1f0910bc2742b16be8425841d5ed6a0fd96f82a4.tar.xz
youtube-dl-1f0910bc2742b16be8425841d5ed6a0fd96f82a4.zip
[svtplay] Fix video id extraction (closes #28058)
-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 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)