]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/videodetective.py
1 from __future__
import unicode_literals
3 from .common
import InfoExtractor
4 from ..compat
import compat_urlparse
5 from .internetvideoarchive
import InternetVideoArchiveIE
8 class VideoDetectiveIE(InfoExtractor
):
9 _VALID_URL
= r
'https?://(?:www\.)?videodetective\.com/[^/]+/[^/]+/(?P<id>\d+)'
12 'url': 'http://www.videodetective.com/movies/kick-ass-2/194487',
16 'title': 'KICK-ASS 2',
17 'description': 'md5:c189d5b7280400630a1d3dd17eaa8d8a',
21 'skip_download': True,
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())