mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-06 21:17:06 +01:00
[wimp] Fix Youtube embeds extraction
This commit is contained in:
parent
e8c6afc168
commit
d253df2f65
@ -36,7 +36,8 @@ def _real_extract(self, url):
|
|||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
youtube_id = self._search_regex(
|
youtube_id = self._search_regex(
|
||||||
r"videoId\s*:\s*[\"']([0-9A-Za-z_-]{11})[\"']",
|
(r"videoId\s*:\s*[\"']([0-9A-Za-z_-]{11})[\"']",
|
||||||
|
r'data-id=["\']([0-9A-Za-z_-]{11})'),
|
||||||
webpage, 'video URL', default=None)
|
webpage, 'video URL', default=None)
|
||||||
if youtube_id:
|
if youtube_id:
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user