]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vube.py
405cb9db49f41a144a4c842d8f99aeb1c2023da9
[youtubedl] / youtube_dl / extractor / vube.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from .common import InfoExtractor
6 from ..compat import (
7 compat_str,
8 )
9 from ..utils import (
10 int_or_none,
11 ExtractorError,
12 )
13
14
15 class VubeIE(InfoExtractor):
16 IE_NAME = 'vube'
17 IE_DESC = 'Vube.com'
18 _VALID_URL = r'http://vube\.com/(?:[^/]+/)+(?P<id>[\da-zA-Z]{10})\b'
19
20 _TESTS = [
21 {
22 'url': 'http://vube.com/trending/William+Wei/Y8NUZ69Tf7?t=s',
23 'md5': 'e7aabe1f8f1aa826b9e4735e1f9cee42',
24 'info_dict': {
25 'id': 'Y8NUZ69Tf7',
26 'ext': 'mp4',
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',
33 'duration': 258.051,
34 'like_count': int,
35 'dislike_count': int,
36 'comment_count': int,
37 'categories': ['amazing', 'hd', 'best drummer ever', 'william wei', 'bucket drumming', 'street drummer', 'epic street drumming'],
38 },
39 }, {
40 'url': 'http://vube.com/Chiara+Grispo+Video+Channel/YL2qNPkqon',
41 'md5': 'db7aba89d4603dadd627e9d1973946fe',
42 'info_dict': {
43 'id': 'YL2qNPkqon',
44 'ext': 'mp4',
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',
51 'duration': 170.56,
52 'like_count': int,
53 'dislike_count': int,
54 'comment_count': int,
55 'categories': ['pop', 'music', 'cover', 'singing', 'jessie j', 'price tag', 'chiara grispo'],
56 },
57 'skip': 'Removed due to DMCA',
58 },
59 {
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',
62 'info_dict': {
63 'id': 'UeBhTudbfS',
64 'ext': 'mp4',
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',
71 'duration': 240.107,
72 'like_count': int,
73 'dislike_count': int,
74 'comment_count': int,
75 'categories': ['seraina', 'jessica', 'krewella', 'alive'],
76 },
77 'skip': 'Removed due to DMCA',
78 }, {
79 'url': 'http://vube.com/vote/Siren+Gene/0nmsMY5vEq?n=2&t=s',
80 'md5': '0584fc13b50f887127d9d1007589d27f',
81 'info_dict': {
82 'id': '0nmsMY5vEq',
83 'ext': 'mp4',
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$',
87 'uploader': 'Siren',
88 'timestamp': 1395448018,
89 'upload_date': '20140322',
90 'duration': 221.788,
91 'like_count': int,
92 'dislike_count': int,
93 'comment_count': int,
94 'categories': ['let it go', 'cover', 'idina menzel', 'frozen', 'singing', 'disney', 'siren gene'],
95 },
96 'skip': 'Removed due to DMCA',
97 }
98 ]
99
100 def _real_extract(self, url):
101 mobj = re.match(self._VALID_URL, url)
102 video_id = mobj.group('id')
103
104 video = self._download_json(
105 'http://vube.com/t-api/v1/video/%s' % video_id, video_id, 'Downloading video JSON')
106
107 public_id = video['public_id']
108
109 formats = []
110
111 for media in video['media'].get('video', []) + video['media'].get('audio', []):
112 if media['transcoding_status'] != 'processed':
113 continue
114 fmt = {
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']),
118 }
119 vbr = int(media['video_bitrate'])
120 if vbr:
121 fmt.update({
122 'vbr': vbr,
123 'height': int(media['height']),
124 })
125 formats.append(fmt)
126
127 self._sort_formats(formats)
128
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.',
132 expected=True)
133
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')
143
144 comments = video.get('comments')
145 comment_count = None
146 if comments is None:
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'))
152 else:
153 comment_count = len(comments)
154
155 categories = [tag['text'] for tag in video['tags']]
156
157 return {
158 'id': video_id,
159 'formats': formats,
160 'title': title,
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,
171 }