mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 23:09:37 +01:00
[bloomberg] Fix ooyala url extraction
This commit is contained in:
parent
469ec9416a
commit
9d6192a5b8
@ -1,6 +1,7 @@
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from .ooyala import OoyalaIE
|
||||||
|
|
||||||
|
|
||||||
class BloombergIE(InfoExtractor):
|
class BloombergIE(InfoExtractor):
|
||||||
@ -23,5 +24,5 @@ def _real_extract(self, url):
|
|||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
name = mobj.group('name')
|
name = mobj.group('name')
|
||||||
webpage = self._download_webpage(url, name)
|
webpage = self._download_webpage(url, name)
|
||||||
ooyala_url = self._og_search_video_url(webpage)
|
ooyala_code = self._search_regex(r'<source src="http://player.ooyala.com/player/[^/]+/([^".]+)', webpage, u'ooyala url')
|
||||||
return self.url_result(ooyala_url, ie='Ooyala')
|
return OoyalaIE._build_url_result(ooyala_code)
|
||||||
|
Loading…
Reference in New Issue
Block a user