[youtube] Skip unsupported adaptive stream type (#18804)
[youtube-dl] / youtube_dl / extractor / fusion.py
1 from __future__ import unicode_literals
2
3 from .common import InfoExtractor
4 from .ooyala import OoyalaIE
5
6
7 class FusionIE(InfoExtractor):
8     _VALID_URL = r'https?://(?:www\.)?fusion\.(?:net|tv)/video/(?P<id>\d+)'
9     _TESTS = [{
10         'url': 'http://fusion.tv/video/201781/u-s-and-panamanian-forces-work-together-to-stop-a-vessel-smuggling-drugs/',
11         'info_dict': {
12             'id': 'ZpcWNoMTE6x6uVIIWYpHh0qQDjxBuq5P',
13             'ext': 'mp4',
14             'title': 'U.S. and Panamanian forces work together to stop a vessel smuggling drugs',
15             'description': 'md5:0cc84a9943c064c0f46b128b41b1b0d7',
16             'duration': 140.0,
17         },
18         'params': {
19             'skip_download': True,
20         },
21         'add_ie': ['Ooyala'],
22     }, {
23         'url': 'http://fusion.tv/video/201781',
24         'only_matching': True,
25     }]
26
27     def _real_extract(self, url):
28         display_id = self._match_id(url)
29         webpage = self._download_webpage(url, display_id)
30
31         ooyala_code = self._search_regex(
32             r'data-ooyala-id=(["\'])(?P<code>(?:(?!\1).)+)\1',
33             webpage, 'ooyala code', group='code')
34
35         return OoyalaIE._build_url_result(ooyala_code)