1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-03 02:49:28 +00:00
youtube-dl/youtube_dl/extractor/wimp.py

50 lines
1.6 KiB
Python
Raw Normal View History

2014-01-22 01:01:23 +00:00
from __future__ import unicode_literals
2013-06-26 10:25:53 +00:00
from .common import InfoExtractor
from .youtube import YoutubeIE
2013-06-26 10:25:53 +00:00
class WimpIE(InfoExtractor):
2015-09-07 11:49:59 +00:00
_VALID_URL = r'http://(?:www\.)?wimp\.com/(?P<id>[^/]+)/'
_TESTS = [{
2014-02-21 10:57:19 +00:00
'url': 'http://www.wimp.com/maruexhausted/',
2015-09-07 11:49:59 +00:00
'md5': 'ee21217ffd66d058e8b16be340b74883',
2014-01-22 01:01:23 +00:00
'info_dict': {
2014-02-21 10:57:19 +00:00
'id': 'maruexhausted',
2015-09-07 11:49:59 +00:00
'ext': 'mp4',
2014-02-21 10:57:19 +00:00
'title': 'Maru is exhausted.',
'description': 'md5:57e099e857c0a4ea312542b684a869b8',
2013-06-27 18:46:46 +00:00
}
}, {
'url': 'http://www.wimp.com/clowncar/',
2015-09-07 11:49:59 +00:00
'md5': '4e2986c793694b55b37cf92521d12bb4',
'info_dict': {
2015-09-07 11:49:59 +00:00
'id': 'clowncar',
'ext': 'mp4',
2015-09-07 11:49:59 +00:00
'title': 'It\'s like a clown car.',
'description': 'md5:0e56db1370a6e49c5c1d19124c0d2fb2',
},
}]
2013-06-26 10:25:53 +00:00
def _real_extract(self, url):
2015-09-07 11:49:59 +00:00
video_id = self._match_id(url)
2013-06-26 10:25:53 +00:00
webpage = self._download_webpage(url, video_id)
2014-01-22 01:01:23 +00:00
video_url = self._search_regex(
[r"[\"']file[\"']\s*[:,]\s*[\"'](.+?)[\"']", r"videoId\s*:\s*[\"']([^\"']+)[\"']"],
webpage, 'video URL')
if YoutubeIE.suitable(video_url):
self.to_screen('Found YouTube video')
return {
'_type': 'url',
'url': video_url,
'ie_key': YoutubeIE.ie_key(),
}
2013-12-08 06:22:19 +00:00
return {
'id': video_id,
2014-01-22 01:01:23 +00:00
'url': video_url,
2013-12-08 06:22:19 +00:00
'title': self._og_search_title(webpage),
'thumbnail': self._og_search_thumbnail(webpage),
'description': self._og_search_description(webpage),
}