]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/vidme.py
Merge remote-tracking branch 'yan12125/download-dash-segments' (#5886)
[yt-dlp.git] / youtube_dl / extractor / vidme.py
CommitLineData
0138968a
S
1from __future__ import unicode_literals
2
0138968a
S
3from .common import InfoExtractor
4from ..utils import (
5 int_or_none,
6 float_or_none,
7 str_to_int,
8)
9
10
11class VidmeIE(InfoExtractor):
12 _VALID_URL = r'https?://vid\.me/(?:e/)?(?P<id>[\da-zA-Z]+)'
23dd1fc7 13 _TESTS = [{
0138968a
S
14 'url': 'https://vid.me/QNB',
15 'md5': 'f42d05e7149aeaec5c037b17e5d3dc82',
16 'info_dict': {
17 'id': 'QNB',
18 'ext': 'mp4',
19 'title': 'Fishing for piranha - the easy way',
20 'description': 'source: https://www.facebook.com/photo.php?v=312276045600871',
21 'duration': 119.92,
22 'timestamp': 1406313244,
23 'upload_date': '20140725',
24 'thumbnail': 're:^https?://.*\.jpg',
25 },
23dd1fc7
YCH
26 }, {
27 # From http://naked-yogi.tumblr.com/post/118312946248/naked-smoking-stretching
28 'url': 'https://vid.me/e/Wmur',
29 'only_matching': True,
30 }]
0138968a
S
31
32 def _real_extract(self, url):
23dd1fc7 33 url = url.replace('vid.me/e/', 'vid.me/')
9609f02e 34 video_id = self._match_id(url)
0138968a
S
35 webpage = self._download_webpage(url, video_id)
36
9609f02e
PH
37 video_url = self._html_search_regex(
38 r'<source src="([^"]+)"', webpage, 'video URL')
0138968a
S
39
40 title = self._og_search_title(webpage)
41 description = self._og_search_description(webpage, default='')
42 thumbnail = self._og_search_thumbnail(webpage)
43 timestamp = int_or_none(self._og_search_property('updated_time', webpage, fatal=False))
44 width = int_or_none(self._og_search_property('video:width', webpage, fatal=False))
45 height = int_or_none(self._og_search_property('video:height', webpage, fatal=False))
46 duration = float_or_none(self._html_search_regex(
47 r'data-duration="([^"]+)"', webpage, 'duration', fatal=False))
48 view_count = str_to_int(self._html_search_regex(
24993e3b 49 r'<(?:li|span) class="video_views">\s*([\d,\.]+)\s*plays?', webpage, 'view count', fatal=False))
0138968a
S
50 like_count = str_to_int(self._html_search_regex(
51 r'class="score js-video-vote-score"[^>]+data-score="([\d,\.\s]+)">',
52 webpage, 'like count', fatal=False))
0138968a
S
53
54 return {
55 'id': video_id,
56 'url': video_url,
57 'title': title,
58 'description': description,
59 'thumbnail': thumbnail,
60 'timestamp': timestamp,
61 'width': width,
62 'height': height,
63 'duration': duration,
64 'view_count': view_count,
65 'like_count': like_count,
0138968a 66 }