2014-01-22 10:01:23 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-06-26 19:25:53 +09:00
|
|
|
from .common import InfoExtractor
|
2014-04-04 03:44:51 +09:00
|
|
|
from .youtube import YoutubeIE
|
2013-06-26 19:25:53 +09:00
|
|
|
|
|
|
|
|
|
|
|
class WimpIE(InfoExtractor):
|
2016-03-22 00:36:32 +09:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?wimp\.com/(?P<id>[^/]+)'
|
2014-04-04 03:44:51 +09:00
|
|
|
_TESTS = [{
|
2014-02-21 19:57:19 +09:00
|
|
|
'url': 'http://www.wimp.com/maruexhausted/',
|
2015-09-07 20:49:59 +09:00
|
|
|
'md5': 'ee21217ffd66d058e8b16be340b74883',
|
2014-01-22 10:01:23 +09:00
|
|
|
'info_dict': {
|
2014-02-21 19:57:19 +09:00
|
|
|
'id': 'maruexhausted',
|
2015-09-07 20:49:59 +09:00
|
|
|
'ext': 'mp4',
|
2014-02-21 19:57:19 +09:00
|
|
|
'title': 'Maru is exhausted.',
|
|
|
|
'description': 'md5:57e099e857c0a4ea312542b684a869b8',
|
2013-06-28 03:46:46 +09:00
|
|
|
}
|
2014-04-04 03:44:51 +09:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.wimp.com/clowncar/',
|
2015-09-07 20:49:59 +09:00
|
|
|
'md5': '4e2986c793694b55b37cf92521d12bb4',
|
2014-04-04 03:44:51 +09:00
|
|
|
'info_dict': {
|
2015-09-07 20:49:59 +09:00
|
|
|
'id': 'clowncar',
|
2016-03-06 05:52:24 +09:00
|
|
|
'ext': 'webm',
|
2015-09-07 20:49:59 +09:00
|
|
|
'title': 'It\'s like a clown car.',
|
|
|
|
'description': 'md5:0e56db1370a6e49c5c1d19124c0d2fb2',
|
2014-04-04 03:44:51 +09:00
|
|
|
},
|
|
|
|
}]
|
2013-06-26 19:25:53 +09:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-09-07 20:49:59 +09:00
|
|
|
video_id = self._match_id(url)
|
2015-12-08 01:14:45 +09:00
|
|
|
|
2013-06-26 19:25:53 +09:00
|
|
|
webpage = self._download_webpage(url, video_id)
|
2015-12-08 01:14:45 +09:00
|
|
|
|
|
|
|
youtube_id = self._search_regex(
|
|
|
|
r"videoId\s*:\s*[\"']([0-9A-Za-z_-]{11})[\"']",
|
|
|
|
webpage, 'video URL', default=None)
|
|
|
|
if youtube_id:
|
2014-04-04 03:44:51 +09:00
|
|
|
return {
|
|
|
|
'_type': 'url',
|
2015-12-08 01:14:45 +09:00
|
|
|
'url': youtube_id,
|
2014-04-04 03:44:51 +09:00
|
|
|
'ie_key': YoutubeIE.ie_key(),
|
|
|
|
}
|
2013-06-26 21:26:59 +09:00
|
|
|
|
2015-12-08 01:14:45 +09:00
|
|
|
video_url = self._search_regex(
|
2015-12-08 01:18:00 +09:00
|
|
|
r'<video[^>]+>\s*<source[^>]+src=(["\'])(?P<url>.+?)\1',
|
2015-12-08 01:14:45 +09:00
|
|
|
webpage, 'video URL', group='url')
|
|
|
|
|
2013-12-08 15:22:19 +09:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
2014-01-22 10:01:23 +09:00
|
|
|
'url': video_url,
|
2013-12-08 15:22:19 +09:00
|
|
|
'title': self._og_search_title(webpage),
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
|
|
|
'description': self._og_search_description(webpage),
|
2014-04-04 03:44:51 +09:00
|
|
|
}
|