1 from __future__ import unicode_literals
5 from .common import InfoExtractor
15 class VubeIE(InfoExtractor):
18 _VALID_URL = r'http://vube\.com/(?:[^/]+/)+(?P<id>[\da-zA-Z]{10})\b'
22 'url': 'http://vube.com/trending/William+Wei/Y8NUZ69Tf7?t=s',
23 'md5': 'e7aabe1f8f1aa826b9e4735e1f9cee42',
27 'title': 'Best Drummer Ever [HD]',
28 'description': 'md5:2d63c4b277b85c2277761c2cf7337d71',
29 'thumbnail': 're:^https?://.*\.jpg',
30 'uploader': 'William',
31 'timestamp': 1406876915,
32 'upload_date': '20140801',
37 'categories': ['amazing', 'hd', 'best drummer ever', 'william wei', 'bucket drumming', 'street drummer', 'epic street drumming'],
40 'url': 'http://vube.com/Chiara+Grispo+Video+Channel/YL2qNPkqon',
41 'md5': 'db7aba89d4603dadd627e9d1973946fe',
45 'title': 'Chiara Grispo - Price Tag by Jessie J',
46 'description': 'md5:8ea652a1f36818352428cb5134933313',
47 'thumbnail': 're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/102e7e63057-5ebc-4f5c-4065-6ce4ebde131f\.jpg$',
48 'uploader': 'Chiara.Grispo',
49 'timestamp': 1388743358,
50 'upload_date': '20140103',
55 'categories': ['pop', 'music', 'cover', 'singing', 'jessie j', 'price tag', 'chiara grispo'],
57 'skip': 'Removed due to DMCA',
60 'url': 'http://vube.com/SerainaMusic/my-7-year-old-sister-and-i-singing-alive-by-krewella/UeBhTudbfS?t=s&n=1',
61 'md5': '5d4a52492d76f72712117ce6b0d98d08',
65 'title': 'My 7 year old Sister and I singing "Alive" by Krewella',
66 'description': 'md5:40bcacb97796339f1690642c21d56f4a',
67 'thumbnail': 're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/102265d5a9f-0f17-4f6b-5753-adf08484ee1e\.jpg$',
68 'uploader': 'Seraina',
69 'timestamp': 1396492438,
70 'upload_date': '20140403',
75 'categories': ['seraina', 'jessica', 'krewella', 'alive'],
77 'skip': 'Removed due to DMCA',
79 'url': 'http://vube.com/vote/Siren+Gene/0nmsMY5vEq?n=2&t=s',
80 'md5': '0584fc13b50f887127d9d1007589d27f',
84 'title': 'Frozen - Let It Go Cover by Siren Gene',
85 'description': 'My rendition of "Let It Go" originally sung by Idina Menzel.',
86 'thumbnail': 're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/10283ab622a-86c9-4681-51f2-30d1f65774af\.jpg$',
88 'timestamp': 1395448018,
89 'upload_date': '20140322',
94 'categories': ['let it go', 'cover', 'idina menzel', 'frozen', 'singing', 'disney', 'siren gene'],
96 'skip': 'Removed due to DMCA',
100 def _real_extract(self, url):
101 mobj = re.match(self._VALID_URL, url)
102 video_id = mobj.group('id')
104 video = self._download_json(
105 'http://vube.com/t-api/v1/video/%s' % video_id, video_id, 'Downloading video JSON')
107 public_id = video['public_id']
111 for media in video['media'].get('video', []) + video['media'].get('audio', []):
112 if media['transcoding_status'] != 'processed':
115 'url': 'http://video.thestaticvube.com/video/%s/%s.mp4' % (media['media_resolution_id'], public_id),
116 'abr': int(media['audio_bitrate']),
117 'format_id': compat_str(media['media_resolution_id']),
119 vbr = int(media['video_bitrate'])
123 'height': int(media['height']),
127 self._sort_formats(formats)
129 if not formats and video.get('vst') == 'dmca':
130 raise ExtractorError(
131 'This video has been removed in response to a complaint received under the US Digital Millennium Copyright Act.',
134 title = video['title']
135 description = video.get('description')
136 thumbnail = self._proto_relative_url(video.get('thumbnail_src'), scheme='http:')
137 uploader = video.get('user_alias') or video.get('channel')
138 timestamp = int_or_none(video.get('upload_time'))
139 duration = video['duration']
140 view_count = video.get('raw_view_count')
141 like_count = video.get('total_likes')
142 dislike_count = video.get('total_hates')
144 comments = video.get('comments')
147 comment_data = self._download_json(
148 'http://vube.com/api/video/%s/comment' % video_id,
149 video_id, 'Downloading video comment JSON', fatal=False)
150 if comment_data is not None:
151 comment_count = int_or_none(comment_data.get('total'))
153 comment_count = len(comments)
155 categories = [tag['text'] for tag in video['tags']]
161 'description': description,
162 'thumbnail': thumbnail,
163 'uploader': uploader,
164 'timestamp': timestamp,
165 'duration': duration,
166 'view_count': view_count,
167 'like_count': like_count,
168 'dislike_count': dislike_count,
169 'comment_count': comment_count,
170 'categories': categories,