mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-12 02:01:00 +01:00
[fusion] Improve
This commit is contained in:
parent
bb08101ec4
commit
14ff6baa0e
@ -5,10 +5,9 @@ from .ooyala import OoyalaIE
|
|||||||
|
|
||||||
|
|
||||||
class FusionIE(InfoExtractor):
|
class FusionIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?fusion\.net/video/\d+/(?P<id>[\w-]+)'
|
_VALID_URL = r'https?://(?:www\.)?fusion\.net/video/(?P<id>\d+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'http://fusion.net/video/201781/u-s-and-panamanian-forces-work-together-to-stop-a-vessel-smuggling-drugs/',
|
'url': 'http://fusion.net/video/201781/u-s-and-panamanian-forces-work-together-to-stop-a-vessel-smuggling-drugs/',
|
||||||
'md5': '55c3dd61d2b96dc17c4ab6711d02a39e',
|
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'ZpcWNoMTE6x6uVIIWYpHh0qQDjxBuq5P',
|
'id': 'ZpcWNoMTE6x6uVIIWYpHh0qQDjxBuq5P',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
@ -16,14 +15,21 @@ class FusionIE(InfoExtractor):
|
|||||||
'description': 'md5:0cc84a9943c064c0f46b128b41b1b0d7',
|
'description': 'md5:0cc84a9943c064c0f46b128b41b1b0d7',
|
||||||
'duration': 140.0,
|
'duration': 140.0,
|
||||||
},
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
'add_ie': ['Ooyala'],
|
'add_ie': ['Ooyala'],
|
||||||
}
|
}, {
|
||||||
|
'url': 'http://fusion.net/video/201781',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
display_id = self._match_id(url)
|
display_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, display_id)
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
|
||||||
ooyala_code = self._search_regex(r'data-video-id="([^"]{32})"',
|
ooyala_code = self._search_regex(
|
||||||
webpage, 'ooyala code')
|
r'data-video-id=(["\'])(?P<code>.+?)\1',
|
||||||
|
webpage, 'ooyala code', group='code')
|
||||||
|
|
||||||
return OoyalaIE._build_url_result(ooyala_code)
|
return OoyalaIE._build_url_result(ooyala_code)
|
||||||
|
Loading…
Reference in New Issue
Block a user