diff options
| author | rzhxeo <rzhxeo@users.noreply.github.com> | 2013-09-30 21:39:58 -0700 | 
|---|---|---|
| committer | rzhxeo <rzhxeo@users.noreply.github.com> | 2013-09-30 21:39:58 -0700 | 
| commit | c0de39e6d42d8de6a77768b2a96570fd8df8ad36 (patch) | |
| tree | ef10e4ee36c43121490ae5bf89275c1793a30f88 /youtube_dl/extractor/bloomberg.py | |
| parent | a921f40799d2ecb4be53b3241d2dbfc80f804d73 (diff) | |
| parent | 722076a123c60ed6d5a978c4bc2609f46c8e3ee9 (diff) | |
Merge pull request #2 from rg3/master
Update
Diffstat (limited to 'youtube_dl/extractor/bloomberg.py')
| -rw-r--r-- | youtube_dl/extractor/bloomberg.py | 27 | 
1 files changed, 27 insertions, 0 deletions
diff --git a/youtube_dl/extractor/bloomberg.py b/youtube_dl/extractor/bloomberg.py new file mode 100644 index 000000000..3666a780b --- /dev/null +++ b/youtube_dl/extractor/bloomberg.py @@ -0,0 +1,27 @@ +import re + +from .common import InfoExtractor + + +class BloombergIE(InfoExtractor): +    _VALID_URL = r'https?://www\.bloomberg\.com/video/(?P<name>.+?).html' + +    _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) +        ooyala_url = self._og_search_video_url(webpage) +        return self.url_result(ooyala_url, ie='Ooyala')  | 
