diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-09 21:47:35 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-09 21:47:35 +0800 |
commit | c991106706c05401090bcba79e65feae5c7e3fda (patch) | |
tree | 9f0ca23dd4ec9e0c20d01914dc6af6510a5cd216 /youtube_dl/extractor/videodetective.py | |
parent | dae2a058de81e42d73bdbe0041a598262703c352 (diff) |
[videodetective] Adapt to InternetVideoArchiveIE
Diffstat (limited to 'youtube_dl/extractor/videodetective.py')
-rw-r--r-- | youtube_dl/extractor/videodetective.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/videodetective.py b/youtube_dl/extractor/videodetective.py index 0ffc7ff7d..2ed5d9643 100644 --- a/youtube_dl/extractor/videodetective.py +++ b/youtube_dl/extractor/videodetective.py @@ -14,8 +14,11 @@ class VideoDetectiveIE(InfoExtractor): 'id': '194487', 'ext': 'mp4', 'title': 'KICK-ASS 2', - 'description': 'md5:65ba37ad619165afac7d432eaded6013', - 'duration': 138, + 'description': 'md5:c189d5b7280400630a1d3dd17eaa8d8a', + }, + 'params': { + # m3u8 download + 'skip_download': True, }, } @@ -24,4 +27,4 @@ class VideoDetectiveIE(InfoExtractor): webpage = self._download_webpage(url, video_id) og_video = self._og_search_video_url(webpage) query = compat_urlparse.urlparse(og_video).query - return self.url_result(InternetVideoArchiveIE._build_url(query), ie=InternetVideoArchiveIE.ie_key()) + return self.url_result(InternetVideoArchiveIE._build_json_url(query), ie=InternetVideoArchiveIE.ie_key()) |