[youtube] Skip unsupported adaptive stream type (#18804)
[youtube-dl] / youtube_dl / extractor / videodetective.py
1 from __future__ import unicode_literals
2
3 from .common import InfoExtractor
4 from ..compat import compat_urlparse
5 from .internetvideoarchive import InternetVideoArchiveIE
6
7
8 class VideoDetectiveIE(InfoExtractor):
9     _VALID_URL = r'https?://(?:www\.)?videodetective\.com/[^/]+/[^/]+/(?P<id>\d+)'
10
11     _TEST = {
12         'url': 'http://www.videodetective.com/movies/kick-ass-2/194487',
13         'info_dict': {
14             'id': '194487',
15             'ext': 'mp4',
16             'title': 'KICK-ASS 2',
17             'description': 'md5:c189d5b7280400630a1d3dd17eaa8d8a',
18         },
19         'params': {
20             # m3u8 download
21             'skip_download': True,
22         },
23     }
24
25     def _real_extract(self, url):
26         video_id = self._match_id(url)
27         webpage = self._download_webpage(url, video_id)
28         og_video = self._og_search_video_url(webpage)
29         query = compat_urlparse.urlparse(og_video).query
30         return self.url_result(InternetVideoArchiveIE._build_json_url(query), ie=InternetVideoArchiveIE.ie_key())