X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fviddler.py;h=40ffbad2aa57df2145b3c315c20ee3f87c400541;hb=78653a33aa00ba5205940c2baac5d9f019795b88;hp=9caee94e73232a3d103e8c927e1d954ea1cb03d7;hpb=b04fbd789c1efd5f918f81b5a5b9b6dafa806900;p=youtube-dl diff --git a/youtube_dl/extractor/viddler.py b/youtube_dl/extractor/viddler.py index 9caee94e7..40ffbad2a 100644 --- a/youtube_dl/extractor/viddler.py +++ b/youtube_dl/extractor/viddler.py @@ -4,9 +4,7 @@ from .common import InfoExtractor from ..utils import ( float_or_none, int_or_none, -) -from ..compat import ( - compat_urllib_request + sanitized_Request, ) @@ -26,6 +24,7 @@ class ViddlerIE(InfoExtractor): 'duration': 100.89, 'thumbnail': 're:^https?://.*\.jpg$', 'view_count': int, + 'comment_count': int, 'categories': ['video content', 'high quality video', 'video made easy', 'how to produce video with limited resources', 'viddler'], } }, { @@ -38,6 +37,8 @@ class ViddlerIE(InfoExtractor): 'upload_date': '20150126', 'uploader': 'deadspin', 'timestamp': 1422285291, + 'view_count': int, + 'comment_count': int, } }, { 'url': 'http://www.viddler.com/player/221ebbbd/0/', @@ -50,6 +51,8 @@ class ViddlerIE(InfoExtractor): 'upload_date': '20140929', 'uploader': 'BCLETeens', 'timestamp': 1411997190, + 'view_count': int, + 'comment_count': int, } }] @@ -60,15 +63,16 @@ class ViddlerIE(InfoExtractor): 'http://api.viddler.com/api/v2/viddler.videos.getPlaybackDetails.json?video_id=%s&key=v0vhrt7bg2xq1vyxhkct' % video_id) headers = {'Referer': 'http://static.cdn-ec.viddler.com/js/arpeggio/v2/embed.html'} - request = compat_urllib_request.Request(json_url, None, headers) + request = sanitized_Request(json_url, None, headers) data = self._download_json(request, video_id)['video'] formats = [] for filed in data['files']: if filed.get('status', 'ready') != 'ready': continue + format_id = filed.get('profile_id') or filed['profile_name'] f = { - 'format_id': filed['profile_id'] or filed['profile_name'], + 'format_id': format_id, 'format_note': filed['profile_name'], 'url': self._proto_relative_url(filed['url']), 'width': int_or_none(filed.get('width')), @@ -82,14 +86,14 @@ class ViddlerIE(InfoExtractor): if filed.get('cdn_url'): f = f.copy() f['url'] = self._proto_relative_url(filed['cdn_url'], 'http:') - f['format_id'] = (filed['profile_id'] or filed['profile_name']) + '-cdn' + f['format_id'] = format_id + '-cdn' f['source_preference'] = 1 formats.append(f) if filed.get('html5_video_source'): f = f.copy() f['url'] = self._proto_relative_url(filed['html5_video_source']) - f['format_id'] = (filed['profile_id'] or filed['profile_name']) + '-html5' + f['format_id'] = format_id + '-html5' f['source_preference'] = 0 formats.append(f) self._sort_formats(formats) @@ -107,5 +111,6 @@ class ViddlerIE(InfoExtractor): 'uploader': data.get('author'), 'duration': float_or_none(data.get('length')), 'view_count': int_or_none(data.get('view_count')), + 'comment_count': int_or_none(data.get('comment_count')), 'categories': categories, }