mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
parent
2c475e48b5
commit
5469a4ab11
@ -31,8 +31,13 @@ def _real_extract(self, url):
|
|||||||
webpage = self._download_webpage(url, display_id)
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
|
||||||
iframe_path = self._html_search_regex(
|
iframe_path = self._html_search_regex(
|
||||||
r'<iframe id="player_iframe"[^>]+src="([^"]+)"', webpage,
|
r'<iframe id="player_iframe"[^>]+src="([^"]+)"', webpage, 'iframe path', default=None)
|
||||||
'iframe path')
|
|
||||||
|
if iframe_path is None:
|
||||||
|
iframe_path = self._html_search_regex(
|
||||||
|
r'<iframe [^>]*\bsrc="(https://motorsport\.tv/embed/[^"]+)', webpage, 'embed iframe path')
|
||||||
|
return self.url_result(iframe_path)
|
||||||
|
|
||||||
iframe = self._download_webpage(
|
iframe = self._download_webpage(
|
||||||
compat_urlparse.urljoin(url, iframe_path), display_id,
|
compat_urlparse.urljoin(url, iframe_path), display_id,
|
||||||
'Downloading iframe')
|
'Downloading iframe')
|
||||||
|
Loading…
Reference in New Issue
Block a user