aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/motorsport.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/motorsport.py')
-rw-r--r--yt_dlp/extractor/motorsport.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/yt_dlp/extractor/motorsport.py b/yt_dlp/extractor/motorsport.py
index b292aeb9a..efb087d03 100644
--- a/yt_dlp/extractor/motorsport.py
+++ b/yt_dlp/extractor/motorsport.py
@@ -31,8 +31,13 @@ class MotorsportIE(InfoExtractor):
webpage = self._download_webpage(url, display_id)
iframe_path = self._html_search_regex(
- r'<iframe id="player_iframe"[^>]+src="([^"]+)"', webpage,
- 'iframe path')
+ r'<iframe id="player_iframe"[^>]+src="([^"]+)"', webpage, 'iframe path', default=None)
+
+ 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(
compat_urlparse.urljoin(url, iframe_path), display_id,
'Downloading iframe')