1 from __future__
import unicode_literals
3 from .common
import InfoExtractor
4 from .youtube
import YoutubeIE
7 class WimpIE(InfoExtractor
):
8 _VALID_URL
= r
'https?://(?:www\.)?wimp\.com/(?P<id>[^/]+)'
10 'url': 'http://www.wimp.com/maru-is-exhausted/',
11 'md5': 'ee21217ffd66d058e8b16be340b74883',
13 'id': 'maru-is-exhausted',
15 'title': 'Maru is exhausted.',
16 'description': 'md5:57e099e857c0a4ea312542b684a869b8',
19 'url': 'http://www.wimp.com/clowncar/',
20 'md5': '5c31ad862a90dc5b1f023956faec13fe',
24 'title': 'Basset hound clown car...incredible!',
25 'description': '5 of my Bassets crawled in this dog loo! www.bellinghambassets.com\n\nFor licensing/usage please contact: licensing(at)jukinmediadotcom',
26 'upload_date': '20140303',
27 'uploader': 'Gretchen Hoey',
28 'uploader_id': 'gretchenandjeff1',
30 'add_ie': ['Youtube'],
33 def _real_extract(self
, url
):
34 video_id
= self
._match
_id
(url
)
36 webpage
= self
._download
_webpage
(url
, video_id
)
38 youtube_id
= self
._search
_regex
(
39 r
"videoId\s*:\s*[\"']([0-9A-Za-z_-]{11})[\"']",
40 webpage, 'video URL', default=None)
45 'ie_key': YoutubeIE.ie_key(),
48 info_dict = self._extract_jwplayer_data(
49 webpage, video_id, require_title=False)
53 'title': self._og_search_title(webpage),
54 'description': self._og_search_description(webpage),