Merge remote-tracking branch 'Dineshs91/f4m-2.0'
[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:65ba37ad619165afac7d432eaded6013',
18             'duration': 138,
19         },
20     }
21
22     def _real_extract(self, url):
23         video_id = self._match_id(url)
24         webpage = self._download_webpage(url, video_id)
25         og_video = self._og_search_video_url(webpage)
26         query = compat_urlparse.urlparse(og_video).query
27         return self.url_result(InternetVideoArchiveIE._build_url(query), ie=InternetVideoArchiveIE.ie_key())