1 from __future__ import unicode_literals
3 from .common import InfoExtractor
13 class ViddlerIE(InfoExtractor):
14 _VALID_URL = r'https?://(?:www\.)?viddler\.com/(?:v|embed|player)/(?P<id>[a-z0-9]+)'
16 'url': 'http://www.viddler.com/v/43903784',
17 'md5': 'ae43ad7cb59431ce043f0ff7fa13cbf4',
21 'title': 'Video Made Easy',
22 'description': 'md5:6a697ebd844ff3093bd2e82c37b409cd',
23 'uploader': 'viddler',
24 'timestamp': 1335371429,
25 'upload_date': '20120425',
27 'thumbnail': 're:^https?://.*\.jpg$',
30 'categories': ['video content', 'high quality video', 'video made easy', 'how to produce video with limited resources', 'viddler'],
33 'url': 'http://www.viddler.com/v/4d03aad9/',
34 'md5': 'faa71fbf70c0bee7ab93076fd007f4b0',
38 'title': 'WALL-TO-GORTAT',
39 'upload_date': '20150126',
40 'uploader': 'deadspin',
41 'timestamp': 1422285291,
46 'url': 'http://www.viddler.com/player/221ebbbd/0/',
47 'md5': '0defa2bd0ea613d14a6e9bd1db6be326',
51 'title': 'LETeens-Grammar-snack-third-conditional',
53 'upload_date': '20140929',
54 'uploader': 'BCLETeens',
55 'timestamp': 1411997190,
61 def _real_extract(self, url):
62 video_id = self._match_id(url)
65 'http://api.viddler.com/api/v2/viddler.videos.getPlaybackDetails.json?video_id=%s&key=v0vhrt7bg2xq1vyxhkct' %
67 headers = {'Referer': 'http://static.cdn-ec.viddler.com/js/arpeggio/v2/embed.html'}
68 request = compat_urllib_request.Request(json_url, None, headers)
69 data = self._download_json(request, video_id)['video']
72 for filed in data['files']:
73 if filed.get('status', 'ready') != 'ready':
75 format_id = filed.get('profile_id') or filed['profile_name']
77 'format_id': format_id,
78 'format_note': filed['profile_name'],
79 'url': self._proto_relative_url(filed['url']),
80 'width': int_or_none(filed.get('width')),
81 'height': int_or_none(filed.get('height')),
82 'filesize': int_or_none(filed.get('size')),
83 'ext': filed.get('ext'),
84 'source_preference': -1,
88 if filed.get('cdn_url'):
90 f['url'] = self._proto_relative_url(filed['cdn_url'], 'http:')
91 f['format_id'] = format_id + '-cdn'
92 f['source_preference'] = 1
95 if filed.get('html5_video_source'):
97 f['url'] = self._proto_relative_url(filed['html5_video_source'])
98 f['format_id'] = format_id + '-html5'
99 f['source_preference'] = 0
101 self._sort_formats(formats)
104 t.get('text') for t in data.get('tags', []) if 'text' in t]
108 'title': data['title'],
110 'description': data.get('description'),
111 'timestamp': int_or_none(data.get('upload_time')),
112 'thumbnail': self._proto_relative_url(data.get('thumbnail_url')),
113 'uploader': data.get('author'),
114 'duration': float_or_none(data.get('length')),
115 'view_count': int_or_none(data.get('view_count')),
116 'comment_count': int_or_none(data.get('comment_count')),
117 'categories': categories,