Merge pull request #9595 from Kagami/vlive-site-update
[youtube-dl] / youtube_dl / extractor / formula1.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .common import InfoExtractor
5
6
7 class Formula1IE(InfoExtractor):
8     _VALID_URL = r'https?://(?:www\.)?formula1\.com/content/fom-website/en/video/\d{4}/\d{1,2}/(?P<id>.+?)\.html'
9     _TEST = {
10         'url': 'http://www.formula1.com/content/fom-website/en/video/2016/5/Race_highlights_-_Spain_2016.html',
11         'md5': '8c79e54be72078b26b89e0e111c0502b',
12         'info_dict': {
13             'id': 'JvYXJpMzE6pArfHWm5ARp5AiUmD-gibV',
14             'ext': 'flv',
15             'title': 'Race highlights - Spain 2016',
16         },
17         'add_ie': ['Ooyala'],
18     }
19
20     def _real_extract(self, url):
21         display_id = self._match_id(url)
22         webpage = self._download_webpage(url, display_id)
23         ooyala_embed_code = self._search_regex(
24             r'data-videoid="([^"]+)"', webpage, 'ooyala embed code')
25         return self.url_result(
26             'ooyala:%s' % ooyala_embed_code, 'Ooyala', ooyala_embed_code)