]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/slideslive.py
2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
5 from ..utils
import smuggle_url
8 class SlidesLiveIE(InfoExtractor
):
9 _VALID_URL
= r
'https?://slideslive\.com/(?P<id>[0-9]+)'
11 # video_service_name = YOUTUBE
12 'url': 'https://slideslive.com/38902413/gcc-ia16-backend',
13 'md5': 'b29fcd6c6952d0c79c5079b0e7a07e6f',
17 'title': 'GCC IA16 backend',
18 'description': 'Watch full version of this video at https://slideslive.com/38902413.',
19 'uploader': 'SlidesLive Videos - A',
20 'uploader_id': 'UC62SdArr41t_-_fX40QCLRw',
21 'upload_date': '20170925',
24 # video_service_name = youtube
25 'url': 'https://slideslive.com/38903721/magic-a-scientific-resurrection-of-an-esoteric-legend',
26 'only_matching': True,
28 # video_service_name = url
29 'url': 'https://slideslive.com/38922070/learning-transferable-skills-1',
30 'only_matching': True,
32 # video_service_name = vimeo
33 'url': 'https://slideslive.com/38921896/retrospectives-a-venue-for-selfreflection-in-ml-research-3',
34 'only_matching': True,
37 def _real_extract(self
, url
):
38 video_id
= self
._match
_id
(url
)
39 video_data
= self
._download
_json
(
40 'https://ben.slideslive.com/player/' + video_id
, video_id
)
41 service_name
= video_data
['video_service_name'].lower()
42 assert service_name
in ('url', 'vimeo', 'youtube')
43 service_id
= video_data
['video_service_id']
46 'thumbnail': video_data
.get('thumbnail'),
49 if service_name
== 'url':
50 info
['title'] = video_data
['title']
53 '_type': 'url_transparent',
54 'ie_key': service_name
.capitalize(),
55 'title': video_data
.get('title'),
57 if service_name
== 'vimeo':
58 info
['url'] = smuggle_url(
59 'https://player.vimeo.com/video/' + service_id
,
60 {'http_headers': {'Referer': url
}})