[slideslive] fix extraction(closes #23413)
[youtube-dl] / youtube_dl / extractor / slideslive.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .common import InfoExtractor
5 from ..utils import ExtractorError
6
7
8 class SlidesLiveIE(InfoExtractor):
9     _VALID_URL = r'https?://slideslive\.com/(?P<id>[0-9]+)'
10     _TESTS = [{
11         # video_service_name = YOUTUBE
12         'url': 'https://slideslive.com/38902413/gcc-ia16-backend',
13         'md5': 'b29fcd6c6952d0c79c5079b0e7a07e6f',
14         'info_dict': {
15             'id': 'LMtgR8ba0b0',
16             'ext': 'mp4',
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',
22         }
23     }, {
24         # video_service_name = youtube
25         'url': 'https://slideslive.com/38903721/magic-a-scientific-resurrection-of-an-esoteric-legend',
26         'only_matching': True,
27     }]
28
29     def _real_extract(self, url):
30         video_id = self._match_id(url)
31         video_data = self._download_json(
32             'https://ben.slideslive.com/player/' + video_id, video_id)
33         service_name = video_data['video_service_name'].lower()
34         if service_name == 'youtube':
35             yt_video_id = video_data['video_service_id']
36             return {
37                 '_type': 'url_transparent',
38                 'ie_key': 'Youtube',
39                 'id': yt_video_id,
40                 'thumbnail': video_data.get('thumbnail'),
41                 'title': video_data.get('title'),
42                 'url': yt_video_id,
43             }
44         else:
45             raise ExtractorError(
46                 'Unsupported service name: {0}'.format(service_name), expected=True)