Merge branch '_stream' of https://github.com/pulpe/youtube-dl into pulpe-_stream
[youtube-dl] / youtube_dl / extractor / bloomberg.py
1 import re
2
3 from .common import InfoExtractor
4 from .ooyala import OoyalaIE
5
6
7 class BloombergIE(InfoExtractor):
8     _VALID_URL = r'https?://www\.bloomberg\.com/video/(?P<name>.+?)\.html'
9
10     _TEST = {
11         u'url': u'http://www.bloomberg.com/video/shah-s-presentation-on-foreign-exchange-strategies-qurhIVlJSB6hzkVi229d8g.html',
12         u'file': u'12bzhqZTqQHmmlA8I-i0NpzJgcG5NNYX.mp4',
13         u'info_dict': {
14             u'title': u'Shah\'s Presentation on Foreign-Exchange Strategies',
15             u'description': u'md5:abc86e5236f9f0e4866c59ad36736686',
16         },
17         u'params': {
18             # Requires ffmpeg (m3u8 manifest)
19             u'skip_download': True,
20         },
21     }
22
23     def _real_extract(self, url):
24         mobj = re.match(self._VALID_URL, url)
25         name = mobj.group('name')
26         webpage = self._download_webpage(url, name)
27         embed_code = self._search_regex(
28             r'<source src="https?://[^/]+/[^/]+/[^/]+/([^/]+)', webpage,
29             'embed code')
30         return OoyalaIE._build_url_result(embed_code)