haruhi-dl/youtube_dl/extractor/wimp.py

34 lines
1 KiB
Python
Raw Normal View History

2014-01-22 02:01:23 +01:00
from __future__ import unicode_literals
2013-06-26 12:25:53 +02:00
import re
2013-06-26 12:25:53 +02:00
from .common import InfoExtractor
class WimpIE(InfoExtractor):
2014-02-21 11:57:19 +01:00
_VALID_URL = r'http://(?:www\.)?wimp\.com/([^/]+)/'
2013-06-27 20:46:46 +02:00
_TEST = {
2014-02-21 11:57:19 +01:00
'url': 'http://www.wimp.com/maruexhausted/',
'md5': 'f1acced123ecb28d9bb79f2479f2b6a1',
2014-01-22 02:01:23 +01:00
'info_dict': {
2014-02-21 11:57:19 +01:00
'id': 'maruexhausted',
'ext': 'flv',
'title': 'Maru is exhausted.',
'description': 'md5:57e099e857c0a4ea312542b684a869b8',
2013-06-27 20:46:46 +02:00
}
}
2013-06-26 12:25:53 +02:00
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)
video_id = mobj.group(1)
webpage = self._download_webpage(url, video_id)
2014-01-22 02:01:23 +01:00
video_url = self._search_regex(
r's1\.addVariable\("file",\s*"([^"]+)"\);', webpage, 'video URL')
2013-12-08 07:22:19 +01:00
return {
'id': video_id,
2014-01-22 02:01:23 +01:00
'url': video_url,
2013-12-08 07:22:19 +01:00
'title': self._og_search_title(webpage),
'thumbnail': self._og_search_thumbnail(webpage),
'description': self._og_search_description(webpage),
2014-02-21 11:57:19 +01:00
}