2013-09-16 19:39:39 +02:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-01-08 18:18:45 +01:00
|
|
|
from .ooyala import OoyalaIE
|
2013-09-16 19:39:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
class BloombergIE(InfoExtractor):
|
2013-12-04 14:34:47 +01:00
|
|
|
_VALID_URL = r'https?://www\.bloomberg\.com/video/(?P<name>.+?)\.html'
|
2013-09-16 19:39:39 +02:00
|
|
|
|
|
|
|
_TEST = {
|
|
|
|
u'url': u'http://www.bloomberg.com/video/shah-s-presentation-on-foreign-exchange-strategies-qurhIVlJSB6hzkVi229d8g.html',
|
|
|
|
u'file': u'12bzhqZTqQHmmlA8I-i0NpzJgcG5NNYX.mp4',
|
|
|
|
u'info_dict': {
|
|
|
|
u'title': u'Shah\'s Presentation on Foreign-Exchange Strategies',
|
|
|
|
u'description': u'md5:abc86e5236f9f0e4866c59ad36736686',
|
|
|
|
},
|
|
|
|
u'params': {
|
|
|
|
# Requires ffmpeg (m3u8 manifest)
|
|
|
|
u'skip_download': True,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
name = mobj.group('name')
|
|
|
|
webpage = self._download_webpage(url, name)
|
2014-02-09 14:11:45 +01:00
|
|
|
embed_code = self._search_regex(
|
|
|
|
r'<source src="https?://[^/]+/[^/]+/[^/]+/([^/]+)', webpage,
|
|
|
|
'embed code')
|
|
|
|
return OoyalaIE._build_url_result(embed_code)
|