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': 'c62f1156138dc3323902188c5b5a8bd6',
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 def _real_extract(self, url):
103 video_id = self._match_id(url)
106 response = self._download_json(
107 'https://api.vid.me/videoByUrl/%s' % video_id, video_id)
108 except ExtractorError as e:
109 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400:
110 response = self._parse_json(e.cause.read(), video_id)
114 error = response.get('error')
116 raise ExtractorError(
117 '%s returned error: %s' % (self.IE_NAME, error), expected=True)
119 video = response['video']
121 if video.get('state') == 'user-disabled':
122 raise ExtractorError(
123 'Vidme said: This video has been suspended either due to a copyright claim, '
124 'or for violating the terms of use.',
128 'format_id': f.get('type'),
130 'width': int_or_none(f.get('width')),
131 'height': int_or_none(f.get('height')),
132 'preference': 0 if f.get('type', '').endswith('clip') else 1,
133 } for f in video.get('formats', []) if f.get('uri')]
134 self._sort_formats(formats)
136 title = video['title']
137 description = video.get('description')
138 thumbnail = video.get('thumbnail_url')
139 timestamp = parse_iso8601(video.get('date_created'), ' ')
140 uploader = video.get('user', {}).get('username')
141 uploader_id = video.get('user', {}).get('user_id')
142 age_limit = 18 if video.get('nsfw') is True else 0
143 duration = float_or_none(video.get('duration'))
144 view_count = int_or_none(video.get('view_count'))
145 like_count = int_or_none(video.get('likes_count'))
146 comment_count = int_or_none(video.get('comment_count'))
151 'description': description,
152 'thumbnail': thumbnail,
153 'uploader': uploader,
154 'uploader_id': uploader_id,
155 'age_limit': age_limit,
156 'timestamp': timestamp,
157 'duration': duration,
158 'view_count': view_count,
159 'like_count': like_count,
160 'comment_count': comment_count,