]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/pinkbike.py
[imdb] Fix extraction
[yt-dlp.git] / youtube_dl / extractor / pinkbike.py
CommitLineData
7198063d
MH
1# coding: utf-8
2from __future__ import unicode_literals
3
4import re
5
6from .common import InfoExtractor
680f9744
MH
7from ..utils import (
8 int_or_none,
9 remove_end,
385c3e5e
S
10 remove_start,
11 str_to_int,
12 unified_strdate,
680f9744 13)
7198063d
MH
14
15
16class PinkbikeIE(InfoExtractor):
385c3e5e 17 _VALID_URL = r'https?://(?:(?:www\.)?pinkbike\.com/video/|es\.pinkbike\.org/i/kvid/kvid-y5\.swf\?id=)(?P<id>[0-9]+)'
7198063d
MH
18 _TESTS = [{
19 'url': 'http://www.pinkbike.com/video/402811/',
20 'md5': '4814b8ca7651034cd87e3361d5c2155a',
21 'info_dict': {
22 'id': '402811',
23 'ext': 'mp4',
24 'title': 'Brandon Semenuk - RAW 100',
385c3e5e 25 'description': 'Official release: www.redbull.ca/rupertwalker',
7198063d 26 'thumbnail': 're:^https?://.*\.jpg$',
385c3e5e 27 'duration': 100,
7198063d 28 'upload_date': '20150406',
385c3e5e
S
29 'uploader': 'revelco',
30 'location': 'Victoria, British Columbia, Canada',
31 'view_count': int,
32 'comment_count': int,
7198063d
MH
33 }
34 }, {
385c3e5e
S
35 'url': 'http://es.pinkbike.org/i/kvid/kvid-y5.swf?id=406629',
36 'only_matching': True,
7198063d
MH
37 }]
38
39 def _real_extract(self, url):
40 video_id = self._match_id(url)
7198063d 41
385c3e5e
S
42 webpage = self._download_webpage(
43 'http://www.pinkbike.com/video/%s' % video_id, video_id)
7198063d 44
385c3e5e
S
45 formats = []
46 for _, format_id, src in re.findall(
47 r'data-quality=((?:\\)?["\'])(.+?)\1[^>]+src=\1(.+?)\1', webpage):
48 height = int_or_none(self._search_regex(
49 r'^(\d+)[pP]$', format_id, 'height', default=None))
50 formats.append({
51 'url': src,
52 'format_id': format_id,
53 'height': height,
54 })
55 self._sort_formats(formats)
680f9744 56
385c3e5e
S
57 title = remove_end(self._og_search_title(webpage), ' Video - Pinkbike')
58 description = self._html_search_regex(
59 r'(?s)id="media-description"[^>]*>(.+?)<',
60 webpage, 'description', default=None) or remove_start(
61 self._og_search_description(webpage), title + '. ')
62 thumbnail = self._og_search_thumbnail(webpage)
680f9744
MH
63 duration = int_or_none(self._html_search_meta(
64 'video:duration', webpage, 'duration'))
7198063d 65
385c3e5e
S
66 uploader = self._search_regex(
67 r'un:\s*"([^"]+)"', webpage, 'uploader', fatal=False)
68 upload_date = unified_strdate(self._search_regex(
69 r'class="fullTime"[^>]+title="([^"]+)"',
70 webpage, 'upload date', fatal=False))
7198063d
MH
71
72 location = self._html_search_regex(
385c3e5e
S
73 r'(?s)<dt>Location</dt>\s*<dd>(.+?)<',
74 webpage, 'location', fatal=False)
7198063d 75
385c3e5e
S
76 def extract_count(webpage, label):
77 return str_to_int(self._search_regex(
78 r'<span[^>]+class="stat-num"[^>]*>([\d,.]+)</span>\s*<span[^>]+class="stat-label"[^>]*>%s' % label,
79 webpage, label, fatal=False))
7198063d 80
385c3e5e
S
81 view_count = extract_count(webpage, 'Views')
82 comment_count = extract_count(webpage, 'Comments')
7198063d
MH
83
84 return {
85 'id': video_id,
86 'title': title,
87 'description': description,
385c3e5e 88 'thumbnail': thumbnail,
680f9744 89 'duration': duration,
7198063d 90 'upload_date': upload_date,
385c3e5e 91 'uploader': uploader,
7198063d 92 'location': location,
385c3e5e
S
93 'view_count': view_count,
94 'comment_count': comment_count,
7198063d
MH
95 'formats': formats
96 }