]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/snotr.py
[utils] Recognize units with full names in parse_filename
[yt-dlp.git] / youtube_dl / extractor / snotr.py
CommitLineData
8adec2b9 1# coding: utf-8
2from __future__ import unicode_literals
3
4import re
5
6from .common import InfoExtractor
8adec2b9 7from ..utils import (
9732d77e 8 float_or_none,
8adec2b9 9 str_to_int,
9732d77e 10 parse_duration,
8adec2b9 11)
12
9732d77e 13
8adec2b9 14class SnotrIE(InfoExtractor):
15 _VALID_URL = r'http?://(?:www\.)?snotr\.com/video/(?P<id>\d+)/([\w]+)'
9732d77e 16 _TESTS = [{
8adec2b9 17 'url': 'http://www.snotr.com/video/13708/Drone_flying_through_fireworks',
18 'info_dict': {
19 'id': '13708',
20 'ext': 'flv',
21 'title': 'Drone flying through fireworks!',
22 'duration': 247,
9732d77e 23 'filesize_approx': 98566144,
da8fb858 24 'description': 'A drone flying through Fourth of July Fireworks',
9732d77e
PH
25 }
26 }, {
8adec2b9 27 'url': 'http://www.snotr.com/video/530/David_Letteman_-_George_W_Bush_Top_10',
28 'info_dict': {
29 'id': '530',
30 'ext': 'flv',
31 'title': 'David Letteman - George W. Bush Top 10',
32 'duration': 126,
9732d77e 33 'filesize_approx': 8912896,
da8fb858 34 'description': 'The top 10 George W. Bush moments, brought to you by David Letterman!',
9732d77e
PH
35 }
36 }]
8adec2b9 37
38 def _real_extract(self, url):
39 mobj = re.match(self._VALID_URL, url)
40 video_id = mobj.group('id')
41
8adec2b9 42 webpage = self._download_webpage(url, video_id)
43 title = self._og_search_title(webpage)
44
45 description = self._og_search_description(webpage)
611c1dd9 46 video_url = 'http://cdn.videos.snotr.com/%s.flv' % video_id
8adec2b9 47
9732d77e
PH
48 view_count = str_to_int(self._html_search_regex(
49 r'<p>\n<strong>Views:</strong>\n([\d,\.]+)</p>',
50 webpage, 'view count', fatal=False))
8adec2b9 51
9732d77e
PH
52 duration = parse_duration(self._html_search_regex(
53 r'<p>\n<strong>Length:</strong>\n\s*([0-9:]+).*?</p>',
54 webpage, 'duration', fatal=False))
8adec2b9 55
9732d77e
PH
56 filesize_approx = float_or_none(self._html_search_regex(
57 r'<p>\n<strong>Filesize:</strong>\n\s*([0-9.]+)\s*megabyte</p>',
58 webpage, 'filesize', fatal=False), invscale=1024 * 1024)
8adec2b9 59
60 return {
61 'id': video_id,
da8fb858 62 'description': description,
8adec2b9 63 'title': title,
9732d77e
PH
64 'url': video_url,
65 'view_count': view_count,
66 'duration': duration,
67 'filesize_approx': filesize_approx,
68 }