]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vube.py
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
15 class VubeIE(InfoExtractor
):
18 _VALID_URL
= r
'https?://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': r
'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'],
39 'skip': 'Not accessible from Travis CI server',
41 'url': 'http://vube.com/Chiara+Grispo+Video+Channel/YL2qNPkqon',
42 'md5': 'db7aba89d4603dadd627e9d1973946fe',
46 'title': 'Chiara Grispo - Price Tag by Jessie J',
47 'description': 'md5:8ea652a1f36818352428cb5134933313',
48 'thumbnail': r
're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/102e7e63057-5ebc-4f5c-4065-6ce4ebde131f\.jpg$',
49 'uploader': 'Chiara.Grispo',
50 'timestamp': 1388743358,
51 'upload_date': '20140103',
56 'categories': ['pop', 'music', 'cover', 'singing', 'jessie j', 'price tag', 'chiara grispo'],
58 'skip': 'Removed due to DMCA',
61 'url': 'http://vube.com/SerainaMusic/my-7-year-old-sister-and-i-singing-alive-by-krewella/UeBhTudbfS?t=s&n=1',
62 'md5': '5d4a52492d76f72712117ce6b0d98d08',
66 'title': 'My 7 year old Sister and I singing "Alive" by Krewella',
67 'description': 'md5:40bcacb97796339f1690642c21d56f4a',
68 'thumbnail': r
're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/102265d5a9f-0f17-4f6b-5753-adf08484ee1e\.jpg$',
69 'uploader': 'Seraina',
70 'timestamp': 1396492438,
71 'upload_date': '20140403',
76 'categories': ['seraina', 'jessica', 'krewella', 'alive'],
78 'skip': 'Removed due to DMCA',
80 'url': 'http://vube.com/vote/Siren+Gene/0nmsMY5vEq?n=2&t=s',
81 'md5': '0584fc13b50f887127d9d1007589d27f',
85 'title': 'Frozen - Let It Go Cover by Siren Gene',
86 'description': 'My rendition of "Let It Go" originally sung by Idina Menzel.',
87 'thumbnail': r
're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/10283ab622a-86c9-4681-51f2-30d1f65774af\.jpg$',
89 'timestamp': 1395448018,
90 'upload_date': '20140322',
95 'categories': ['let it go', 'cover', 'idina menzel', 'frozen', 'singing', 'disney', 'siren gene'],
97 'skip': 'Removed due to DMCA',
101 def _real_extract(self
, url
):
102 mobj
= re
.match(self
._VALID
_URL
, url
)
103 video_id
= mobj
.group('id')
105 video
= self
._download
_json
(
106 'http://vube.com/t-api/v1/video/%s' % video_id
, video_id
, 'Downloading video JSON')
108 public_id
= video
['public_id']
112 for media
in video
['media'].get('video', []) + video
['media'].get('audio', []):
113 if media
['transcoding_status'] != 'processed':
116 'url': 'http://video.thestaticvube.com/video/%s/%s.mp4' % (media
['media_resolution_id'], public_id
),
117 'abr': int(media
['audio_bitrate']),
118 'format_id': compat_str(media
['media_resolution_id']),
120 vbr
= int(media
['video_bitrate'])
124 'height': int(media
['height']),
128 self
._sort
_formats
(formats
)
130 if not formats
and video
.get('vst') == 'dmca':
131 raise ExtractorError(
132 'This video has been removed in response to a complaint received under the US Digital Millennium Copyright Act.',
135 title
= video
['title']
136 description
= video
.get('description')
137 thumbnail
= self
._proto
_relative
_url
(video
.get('thumbnail_src'), scheme
='http:')
138 uploader
= video
.get('user_alias') or video
.get('channel')
139 timestamp
= int_or_none(video
.get('upload_time'))
140 duration
= video
['duration']
141 view_count
= video
.get('raw_view_count')
142 like_count
= video
.get('total_likes')
143 dislike_count
= video
.get('total_hates')
145 comments
= video
.get('comments')
148 comment_data
= self
._download
_json
(
149 'http://vube.com/api/video/%s/comment' % video_id
,
150 video_id
, 'Downloading video comment JSON', fatal
=False)
151 if comment_data
is not None:
152 comment_count
= int_or_none(comment_data
.get('total'))
154 comment_count
= len(comments
)
156 categories
= [tag
['text'] for tag
in video
['tags']]
162 'description': description
,
163 'thumbnail': thumbnail
,
164 'uploader': uploader
,
165 'timestamp': timestamp
,
166 'duration': duration
,
167 'view_count': view_count
,
168 'like_count': like_count
,
169 'dislike_count': dislike_count
,
170 'comment_count': comment_count
,
171 'categories': categories
,