]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vube.py
1 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..utils
import int_or_none
10 class VubeIE(InfoExtractor
):
13 _VALID_URL
= r
'http://vube\.com/(?:[^/]+/)+(?P<id>[\da-zA-Z]{10})\b'
17 'url': 'http://vube.com/Chiara+Grispo+Video+Channel/YL2qNPkqon',
18 'md5': 'db7aba89d4603dadd627e9d1973946fe',
22 'title': 'Chiara Grispo - Price Tag by Jessie J',
23 'description': 'md5:8ea652a1f36818352428cb5134933313',
24 'thumbnail': 're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/102e7e63057-5ebc-4f5c-4065-6ce4ebde131f\.jpg$',
25 'uploader': 'Chiara.Grispo',
26 'timestamp': 1388743358,
27 'upload_date': '20140103',
35 'url': 'http://vube.com/SerainaMusic/my-7-year-old-sister-and-i-singing-alive-by-krewella/UeBhTudbfS?t=s&n=1',
36 'md5': '5d4a52492d76f72712117ce6b0d98d08',
40 'title': 'My 7 year old Sister and I singing "Alive" by Krewella',
41 'description': 'md5:40bcacb97796339f1690642c21d56f4a',
42 'thumbnail': 're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/102265d5a9f-0f17-4f6b-5753-adf08484ee1e\.jpg$',
43 'uploader': 'Seraina',
44 'timestamp': 1396492438,
45 'upload_date': '20140403',
52 'url': 'http://vube.com/vote/Siren+Gene/0nmsMY5vEq?n=2&t=s',
53 'md5': '0584fc13b50f887127d9d1007589d27f',
57 'title': 'Frozen - Let It Go Cover by Siren Gene',
58 'description': 'My rendition of "Let It Go" originally sung by Idina Menzel.',
59 'uploader': 'Siren Gene',
60 'uploader_id': 'Siren',
61 'thumbnail': 're:^http://frame\.thestaticvube\.com/snap/[0-9x]+/10283ab622a-86c9-4681-51f2-30d1f65774af\.jpg$',
70 def _real_extract(self
, url
):
71 mobj
= re
.match(self
._VALID
_URL
, url
)
72 video_id
= mobj
.group('id')
74 webpage
= self
._download
_webpage
(url
, video_id
)
75 data_json
= self
._search
_regex
(
76 r
'(?s)window\["(?:tapiVideoData|vubeOriginalVideoData)"\]\s*=\s*(\{.*?\n});\n',
79 data
= json
.loads(data_json
)
83 assert isinstance(video
, dict)
85 public_id
= video
['public_id']
89 'url': 'http://video.thestaticvube.com/video/%s/%s.mp4' % (fmt
['media_resolution_id'], public_id
),
90 'height': int(fmt
['height']),
91 'abr': int(fmt
['audio_bitrate']),
92 'vbr': int(fmt
['video_bitrate']),
93 'format_id': fmt
['media_resolution_id']
94 } for fmt
in video
['mtm'] if fmt
['transcoding_status'] == 'processed'
97 self
._sort
_formats
(formats
)
99 title
= video
['title']
100 description
= video
.get('description')
101 thumbnail
= self
._proto
_relative
_url
(
102 video
.get('thumbnail') or video
.get('thumbnail_src'),
104 uploader
= data
.get('user', {}).get('channel', {}).get('name') or video
.get('user_alias')
105 uploader_id
= data
.get('user', {}).get('name')
106 timestamp
= int_or_none(video
.get('upload_time'))
107 duration
= video
['duration']
108 view_count
= video
.get('raw_view_count')
109 like_count
= video
.get('rlikes')
110 if like_count
is None:
111 like_count
= video
.get('total_likes')
112 dislike_count
= video
.get('rhates')
113 if dislike_count
is None:
114 dislike_count
= video
.get('total_hates')
116 comments
= video
.get('comments')
119 comment_data
= self
._download
_json
(
120 'http://vube.com/api/video/%s/comment' % video_id
,
121 video_id
, 'Downloading video comment JSON', fatal
=False)
122 if comment_data
is not None:
123 comment_count
= int_or_none(comment_data
.get('total'))
125 comment_count
= len(comments
)
131 'description': description
,
132 'thumbnail': thumbnail
,
133 'uploader': uploader
,
134 'uploader_id': uploader_id
,
135 'timestamp': timestamp
,
136 'duration': duration
,
137 'view_count': view_count
,
138 'like_count': like_count
,
139 'dislike_count': dislike_count
,
140 'comment_count': comment_count
,