mirror of https://github.com/yt-dlp/yt-dlp.git
[extractor/WSJArticle] Fix video id extraction (#4268)
Closes #4249 Authored by: sqrtNOT
This commit is contained in:
parent
3df6a603e4
commit
129dfa5f45
|
@ -116,5 +116,6 @@ class WSJArticleIE(InfoExtractor):
|
|||
article_id = self._match_id(url)
|
||||
webpage = self._download_webpage(url, article_id)
|
||||
video_id = self._search_regex(
|
||||
r'data-src=["\']([a-fA-F0-9-]{36})', webpage, 'video id')
|
||||
r'(?:id=["\']video|video-|iframe\.html\?guid=|data-src=["\'])([a-fA-F0-9-]{36})',
|
||||
webpage, 'video id')
|
||||
return self.url_result('wsj:%s' % video_id, WSJIE.ie_key(), video_id)
|
||||
|
|
Loading…
Reference in New Issue