]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/kickstarter.py
2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
7 class KickStarterIE(InfoExtractor
):
8 _VALID_URL
= r
'https?://www\.kickstarter\.com/projects/(?P<id>[^/]*)/.*'
10 'url': 'https://www.kickstarter.com/projects/1404461844/intersection-the-story-of-josh-grant?ref=home_location',
11 'md5': 'c81addca81327ffa66c642b5d8b08cab',
15 'title': 'Intersection: The Story of Josh Grant by Kyle Cowling',
16 'description': 'A unique motocross documentary that examines the '
17 'life and mind of one of sports most elite athletes: Josh Grant.',
20 'note': 'Embedded video (not using the native kickstarter video service)',
21 'url': 'https://www.kickstarter.com/projects/597507018/pebble-e-paper-watch-for-iphone-and-android/posts/659178',
25 'uploader_id': 'pebble',
26 'uploader': 'Pebble Technology',
27 'title': 'Pebble iOS Notifications',
31 def _real_extract(self
, url
):
32 video_id
= self
._match
_id
(url
)
33 webpage
= self
._download
_webpage
(url
, video_id
)
35 title
= self
._html
_search
_regex
(
36 r
'<title>\s*(.*?)(?:\s*— Kickstarter)?\s*</title>',
38 video_url
= self
._search
_regex
(
39 r
'data-video-url="(.*?)"',
40 webpage
, 'video URL', default
=None)
41 if video_url
is None: # No native kickstarter, look for embedded videos
43 '_type': 'url_transparent',
53 'description': self
._og
_search
_description
(webpage
),
54 'thumbnail': self
._og
_search
_thumbnail
(webpage
),