[wistia] Add alias and modernize
[youtube-dl] / youtube_dl / extractor / wistia.py
1 from __future__ import unicode_literals
2
3 from .common import InfoExtractor
4 from ..utils import (
5     ExtractorError,
6     int_or_none,
7 )
8
9
10 class WistiaIE(InfoExtractor):
11     _VALID_URL = r'(?:wistia:|https?://(?:fast\.)?wistia\.net/embed/iframe/)(?P<id>[a-z0-9]+)'
12     _API_URL = 'http://fast.wistia.com/embed/medias/%s.json'
13     _IFRAME_URL = 'http://fast.wistia.net/embed/iframe/%s'
14
15     _TESTS = [{
16         'url': 'http://fast.wistia.net/embed/iframe/sh7fpupwlt',
17         'md5': 'cafeb56ec0c53c18c97405eecb3133df',
18         'info_dict': {
19             'id': 'sh7fpupwlt',
20             'ext': 'mov',
21             'title': 'Being Resourceful',
22             'description': 'a Clients From Hell Video Series video from worldwidewebhosting',
23             'upload_date': '20131204',
24             'timestamp': 1386185018,
25             'duration': 117,
26         },
27     }, {
28         'url': 'wistia:sh7fpupwlt',
29         'only_matching': True,
30     }]
31
32     def _real_extract(self, url):
33         video_id = self._match_id(url)
34
35         data_json = self._download_json(
36             self._API_URL % video_id, video_id,
37             # Some videos require this.
38             headers={
39                 'Referer': url if url.startswith('http') else self._IFRAME_URL % video_id,
40             })
41
42         if data_json.get('error'):
43             raise ExtractorError(
44                 'Error while getting the playlist', expected=True)
45
46         data = data_json['media']
47         title = data['name']
48
49         formats = []
50         thumbnails = []
51         for a in data['assets']:
52             astatus = a.get('status')
53             atype = a.get('type')
54             if (astatus is not None and astatus != 2) or atype == 'preview':
55                 continue
56             elif atype in ('still', 'still_image'):
57                 thumbnails.append({
58                     'url': a['url'],
59                     'resolution': '%dx%d' % (a['width'], a['height']),
60                 })
61             else:
62                 formats.append({
63                     'format_id': atype,
64                     'url': a['url'],
65                     'tbr': int_or_none(a.get('bitrate')),
66                     'vbr': int_or_none(a.get('opt_vbitrate')),
67                     'width': int_or_none(a.get('width')),
68                     'height': int_or_none(a.get('height')),
69                     'filesize': int_or_none(a.get('size')),
70                     'vcodec': a.get('codec'),
71                     'container': a.get('container'),
72                     'ext': a.get('ext'),
73                     'preference': 1 if atype == 'original' else None,
74                 })
75
76         self._sort_formats(formats)
77
78         return {
79             'id': video_id,
80             'title': title,
81             'description': data.get('seoDescription'),
82             'formats': formats,
83             'thumbnails': thumbnails,
84             'duration': int_or_none(data.get('duration')),
85             'timestamp': int_or_none(data.get('createdAt')),
86         }