2 from __future__ import unicode_literals
4 from .common import InfoExtractor
5 from ..utils import smuggle_url
8 class KickStarterIE(InfoExtractor):
9 _VALID_URL = r'https?://www\.kickstarter\.com/projects/(?P<id>[^/]*)/.*'
11 'url': 'https://www.kickstarter.com/projects/1404461844/intersection-the-story-of-josh-grant/description',
12 'md5': 'c81addca81327ffa66c642b5d8b08cab',
16 'title': 'Intersection: The Story of Josh Grant by Kyle Cowling',
18 'A unique motocross documentary that examines the '
19 'life and mind of one of sports most elite athletes: Josh Grant.'
23 'note': 'Embedded video (not using the native kickstarter video service)',
24 'url': 'https://www.kickstarter.com/projects/597507018/pebble-e-paper-watch-for-iphone-and-android/posts/659178',
28 'uploader_id': 'pebble',
29 'uploader': 'Pebble Technology',
30 'title': 'Pebble iOS Notifications',
34 'url': 'https://www.kickstarter.com/projects/1420158244/power-drive-2000/widget/video.html',
38 'title': 'Power Drive 2000',
40 'expected_warnings': ['OpenGraph description'],
43 def _real_extract(self, url):
44 video_id = self._match_id(url)
45 webpage = self._download_webpage(url, video_id)
47 title = self._html_search_regex(
48 r'<title>\s*(.*?)(?:\s*—\s*Kickstarter)?\s*</title>',
50 video_url = self._search_regex(
51 r'data-video-url="(.*?)"',
52 webpage, 'video URL', default=None)
53 if video_url is None: # No native kickstarter, look for embedded videos
55 '_type': 'url_transparent',
57 'url': smuggle_url(url, {'to_generic': True}),
61 thumbnail = self._og_search_thumbnail(webpage, default=None)
63 thumbnail = self._html_search_regex(
64 r'<img[^>]+class="[^"]+\s*poster\s*[^"]+"[^>]+src="([^"]+)"',
65 webpage, 'thumbnail image', fatal=False)
70 'description': self._og_search_description(webpage),
71 'thumbnail': thumbnail,