]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vidme.py
3d63ed4f08930275ee725c68a520368721e1ed10
1 from __future__
import unicode_literals
3 from .common
import InfoExtractor
4 from ..compat
import compat_HTTPError
13 class VidmeIE(InfoExtractor
):
14 _VALID_URL
= r
'https?://vid\.me/(?:e/)?(?P<id>[\da-zA-Z]+)'
16 'url': 'https://vid.me/QNB',
17 'md5': 'f42d05e7149aeaec5c037b17e5d3dc82',
21 'title': 'Fishing for piranha - the easy way',
22 'description': 'source: https://www.facebook.com/photo.php?v=312276045600871',
23 'thumbnail': 're:^https?://.*\.jpg',
24 'timestamp': 1406313244,
25 'upload_date': '20140725',
33 'url': 'https://vid.me/Gc6M',
34 'md5': 'f42d05e7149aeaec5c037b17e5d3dc82',
38 'title': 'O Mere Dil ke chain - Arnav and Khushi VM',
39 'thumbnail': 're:^https?://.*\.jpg',
40 'timestamp': 1441211642,
41 'upload_date': '20150902',
42 'uploader': 'SunshineM',
43 'uploader_id': '3552827',
51 'skip_download': True,
54 # tests uploader field
55 'url': 'https://vid.me/4Iib',
59 'title': 'The Carver',
60 'description': 'md5:e9c24870018ae8113be936645b93ba3c',
61 'thumbnail': 're:^https?://.*\.jpg',
62 'timestamp': 1433203629,
63 'upload_date': '20150602',
65 'uploader_id': '109747',
67 'duration': 97.859999999999999,
73 'skip_download': True,
76 # nsfw test from http://naked-yogi.tumblr.com/post/118312946248/naked-smoking-stretching
77 'url': 'https://vid.me/e/Wmur',
81 'title': 'naked smoking & stretching',
82 'thumbnail': 're:^https?://.*\.jpg',
83 'timestamp': 1430931613,
84 'upload_date': '20150506',
85 'uploader': 'naked-yogi',
86 'uploader_id': '1638622',
88 'duration': 653.26999999999998,
94 'skip_download': True,
98 'url': 'https://vid.me/dzGJ',
99 'only_matching': True,
102 'url': 'https://vid.me/Ox3G',
103 'only_matching': True,
106 'url': 'https://vid.me/KTPm',
107 'only_matching': True,
109 # no formats in the API response
110 'url': 'https://vid.me/e5g',
114 'title': 'Video upload (e5g)',
115 'thumbnail': 're:^https?://.*\.jpg',
116 'timestamp': 1401480195,
117 'upload_date': '20140530',
124 'comment_count': int,
127 'skip_download': True,
131 def _real_extract(self
, url
):
132 video_id
= self
._match
_id
(url
)
135 response
= self
._download
_json
(
136 'https://api.vid.me/videoByUrl/%s' % video_id
, video_id
)
137 except ExtractorError
as e
:
138 if isinstance(e
.cause
, compat_HTTPError
) and e
.cause
.code
== 400:
139 response
= self
._parse
_json
(e
.cause
.read(), video_id
)
143 error
= response
.get('error')
145 raise ExtractorError(
146 '%s returned error: %s' % (self
.IE_NAME
, error
), expected
=True)
148 video
= response
['video']
150 if video
.get('state') == 'deleted':
151 raise ExtractorError(
152 'Vidme said: Sorry, this video has been deleted.',
155 if video
.get('state') in ('user-disabled', 'suspended'):
156 raise ExtractorError(
157 'Vidme said: This video has been suspended either due to a copyright claim, '
158 'or for violating the terms of use.',
162 'format_id': f
.get('type'),
164 'width': int_or_none(f
.get('width')),
165 'height': int_or_none(f
.get('height')),
166 'preference': 0 if f
.get('type', '').endswith('clip') else 1,
167 } for f
in video
.get('formats', []) if f
.get('uri')]
169 if not formats
and video
.get('complete_url'):
171 'url': video
.get('complete_url'),
172 'width': int_or_none(video
.get('width')),
173 'height': int_or_none(video
.get('height')),
176 self
._sort
_formats
(formats
)
178 title
= video
['title']
179 description
= video
.get('description')
180 thumbnail
= video
.get('thumbnail_url')
181 timestamp
= parse_iso8601(video
.get('date_created'), ' ')
182 uploader
= video
.get('user', {}).get('username')
183 uploader_id
= video
.get('user', {}).get('user_id')
184 age_limit
= 18 if video
.get('nsfw') is True else 0
185 duration
= float_or_none(video
.get('duration'))
186 view_count
= int_or_none(video
.get('view_count'))
187 like_count
= int_or_none(video
.get('likes_count'))
188 comment_count
= int_or_none(video
.get('comment_count'))
192 'title': title
or 'Video upload (%s)' % video_id
,
193 'description': description
,
194 'thumbnail': thumbnail
,
195 'uploader': uploader
,
196 'uploader_id': uploader_id
,
197 'age_limit': age_limit
,
198 'timestamp': timestamp
,
199 'duration': duration
,
200 'view_count': view_count
,
201 'like_count': like_count
,
202 'comment_count': comment_count
,