]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/slideshare.py
release 2017.10.01
[yt-dlp.git] / youtube_dl / extractor / slideshare.py
CommitLineData
1afe7534
JMF
1from __future__ import unicode_literals
2
07463ea1
JMF
3import re
4import json
5
6from .common import InfoExtractor
1cc79574 7from ..compat import (
07463ea1 8 compat_urlparse,
1cc79574
PH
9)
10from ..utils import (
07463ea1 11 ExtractorError,
77082c7b 12 get_element_by_id,
07463ea1
JMF
13)
14
15
16class SlideshareIE(InfoExtractor):
92519402 17 _VALID_URL = r'https?://(?:www\.)?slideshare\.net/[^/]+?/(?P<title>.+?)($|\?)'
07463ea1
JMF
18
19 _TEST = {
1afe7534
JMF
20 'url': 'http://www.slideshare.net/Dataversity/keynote-presentation-managing-scale-and-complexity',
21 'info_dict': {
22 'id': '25665706',
23 'ext': 'mp4',
24 'title': 'Managing Scale and Complexity',
25 'description': 'This was a keynote presentation at the NoSQL Now! 2013 Conference & Expo (http://www.nosqlnow.com). This presentation was given by Adrian Cockcroft from Netflix.',
07463ea1
JMF
26 },
27 }
28
29 def _real_extract(self, url):
30 mobj = re.match(self._VALID_URL, url)
31 page_title = mobj.group('title')
32 webpage = self._download_webpage(url, page_title)
33 slideshare_obj = self._search_regex(
00dbdfc1 34 r'\$\.extend\(.*?slideshare_object,\s*(\{.*?\})\);',
1afe7534 35 webpage, 'slideshare object')
07463ea1 36 info = json.loads(slideshare_obj)
1afe7534
JMF
37 if info['slideshow']['type'] != 'video':
38 raise ExtractorError('Webpage type is "%s": only video extraction is supported for Slideshare' % info['slideshow']['type'], expected=True)
07463ea1
JMF
39
40 doc = info['doc']
41 bucket = info['jsplayer']['video_bucket']
42 ext = info['jsplayer']['video_extension']
43 video_url = compat_urlparse.urljoin(bucket, doc + '-SD.' + ext)
77082c7b 44 description = get_element_by_id('slideshow-description-paragraph', webpage) or self._html_search_regex(
b7a7319c 45 r'(?s)<p[^>]+itemprop="description"[^>]*>(.+?)</p>', webpage,
c82b1fda 46 'description', fatal=False)
07463ea1
JMF
47
48 return {
49 '_type': 'video',
50 'id': info['slideshow']['id'],
51 'title': info['slideshow']['title'],
52 'ext': ext,
53 'url': video_url,
54 'thumbnail': info['slideshow']['pin_image_url'],
77082c7b 55 'description': description.strip() if description else None,
07463ea1 56 }