]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/motorsport.py
[jsinterp] Handle new youtube signature functions
[yt-dlp.git] / yt_dlp / extractor / motorsport.py
1 from .common import InfoExtractor
2 from ..compat import (
3 compat_urlparse,
4 )
5
6
7 class MotorsportIE(InfoExtractor):
8 IE_DESC = 'motorsport.com'
9 _VALID_URL = r'https?://(?:www\.)?motorsport\.com/[^/?#]+/video/(?:[^/?#]+/)(?P<id>[^/]+)/?(?:$|[?#])'
10 _TEST = {
11 'url': 'http://www.motorsport.com/f1/video/main-gallery/red-bull-racing-2014-rules-explained/',
12 'info_dict': {
13 'id': '2-T3WuR-KMM',
14 'ext': 'mp4',
15 'title': 'Red Bull Racing: 2014 Rules Explained',
16 'duration': 208,
17 'description': 'A new clip from Red Bull sees Daniel Ricciardo and Sebastian Vettel explain the 2014 Formula One regulations – which are arguably the most complex the sport has ever seen.',
18 'uploader': 'mcomstaff',
19 'uploader_id': 'UC334JIYKkVnyFoNCclfZtHQ',
20 'upload_date': '20140903',
21 'thumbnail': r're:^https?://.+\.jpg$'
22 },
23 'add_ie': ['Youtube'],
24 'params': {
25 'skip_download': True,
26 },
27 }
28
29 def _real_extract(self, url):
30 display_id = self._match_id(url)
31 webpage = self._download_webpage(url, display_id)
32
33 iframe_path = self._html_search_regex(
34 r'<iframe id="player_iframe"[^>]+src="([^"]+)"', webpage,
35 'iframe path')
36 iframe = self._download_webpage(
37 compat_urlparse.urljoin(url, iframe_path), display_id,
38 'Downloading iframe')
39 youtube_id = self._search_regex(
40 r'www.youtube.com/embed/(.{11})', iframe, 'youtube id')
41
42 return {
43 '_type': 'url_transparent',
44 'display_id': display_id,
45 'url': 'https://youtube.com/watch?v=%s' % youtube_id,
46 }