summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-08 18:18:45 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-08 18:18:45 +0100
commit9d6192a5b8d81b2997fa7dc7bb1b2a3db0183a91 (patch)
tree7b455cff8fe420cafa6577b042aed8fd0145985d
parent469ec9416a813f845df0df06a077a008597d83d9 (diff)
downloadyoutube-dl-9d6192a5b8d81b2997fa7dc7bb1b2a3db0183a91.tar.gz
youtube-dl-9d6192a5b8d81b2997fa7dc7bb1b2a3db0183a91.tar.xz
youtube-dl-9d6192a5b8d81b2997fa7dc7bb1b2a3db0183a91.zip
[bloomberg] Fix ooyala url extraction
-rw-r--r--youtube_dl/extractor/bloomberg.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/bloomberg.py b/youtube_dl/extractor/bloomberg.py
index 755d9c9ef..d18bc7e0c 100644
--- a/youtube_dl/extractor/bloomberg.py
+++ b/youtube_dl/extractor/bloomberg.py
@@ -1,6 +1,7 @@
 import re
 
 from .common import InfoExtractor
+from .ooyala import OoyalaIE
 
 
 class BloombergIE(InfoExtractor):
@@ -23,5 +24,5 @@ class BloombergIE(InfoExtractor):
         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')
+        ooyala_code = self._search_regex(r'<source src="http://player.ooyala.com/player/[^/]+/([^".]+)', webpage, u'ooyala url')
+        return OoyalaIE._build_url_result(ooyala_code)