]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/playvid.py
[cleanup] Use `_html_extract_title`
[yt-dlp.git] / yt_dlp / extractor / playvid.py
CommitLineData
4ea3137e
M
1from __future__ import unicode_literals
2
3import re
4
5from .common import InfoExtractor
1cc79574 6from ..compat import (
388ad0c0
S
7 compat_urllib_parse_unquote,
8 compat_urllib_parse_unquote_plus,
1cc79574 9)
4ea3137e 10from ..utils import (
e987e91f 11 clean_html,
1cc79574 12 ExtractorError,
4ea3137e
M
13)
14
4ea3137e 15
db95dc13 16class PlayvidIE(InfoExtractor):
92519402 17 _VALID_URL = r'https?://(?:www\.)?playvid\.com/watch(\?v=|/)(?P<id>.+?)(?:#|$)'
2a49d016 18 _TESTS = [{
1cc79574
PH
19 'url': 'http://www.playvid.com/watch/RnmBNgtrrJu',
20 'md5': 'ffa2f6b2119af359f544388d8c01eb6c',
4ea3137e 21 'info_dict': {
1cc79574 22 'id': 'RnmBNgtrrJu',
db95dc13 23 'ext': 'mp4',
1cc79574
PH
24 'title': 'md5:9256d01c6317e3f703848b5906880dc8',
25 'duration': 82,
4ea3137e 26 'age_limit': 18,
2a49d016
YCH
27 },
28 'skip': 'Video removed due to ToS',
29 }, {
30 'url': 'http://www.playvid.com/watch/hwb0GpNkzgH',
31 'md5': '39d49df503ad7b8f23a4432cbf046477',
32 'info_dict': {
33 'id': 'hwb0GpNkzgH',
34 'ext': 'mp4',
35 'title': 'Ellen Euro Cutie Blond Takes a Sexy Survey Get Facial in The Park',
36 'age_limit': 18,
ec85ded8 37 'thumbnail': r're:^https?://.*\.jpg$',
2a49d016
YCH
38 },
39 }]
4ea3137e
M
40
41 def _real_extract(self, url):
1cc79574 42 video_id = self._match_id(url)
4ea3137e
M
43 webpage = self._download_webpage(url, video_id)
44
e987e91f
S
45 m_error = re.search(
46 r'<div class="block-error">\s*<div class="heading">\s*<div>(?P<msg>.+?)</div>\s*</div>', webpage)
47 if m_error:
48 raise ExtractorError(clean_html(m_error.group('msg')), expected=True)
49
4ea3137e
M
50 video_title = None
51 duration = None
52 video_thumbnail = None
53 formats = []
54
55 # most of the information is stored in the flashvars
db95dc13
PH
56 flashvars = self._html_search_regex(
57 r'flashvars="(.+?)"', webpage, 'flashvars')
4ea3137e 58
388ad0c0 59 infos = compat_urllib_parse_unquote(flashvars).split(r'&')
db95dc13
PH
60 for info in infos:
61 videovars_match = re.match(r'^video_vars\[(.+?)\]=(.+?)$', info)
62 if videovars_match:
63 key = videovars_match.group(1)
64 val = videovars_match.group(2)
4ea3137e 65
db95dc13 66 if key == 'title':
388ad0c0 67 video_title = compat_urllib_parse_unquote_plus(val)
db95dc13
PH
68 if key == 'duration':
69 try:
70 duration = int(val)
71 except ValueError:
72 pass
73 if key == 'big_thumb':
74 video_thumbnail = val
4ea3137e 75
db95dc13
PH
76 videourl_match = re.match(
77 r'^video_urls\]\[(?P<resolution>[0-9]+)p', key)
78 if videourl_match:
79 height = int(videourl_match.group('resolution'))
80 formats.append({
81 'height': height,
82 'url': val,
83 })
84 self._sort_formats(formats)
4ea3137e
M
85
86 # Extract title - should be in the flashvars; if not, look elsewhere
87 if video_title is None:
04f3fd2c 88 video_title = self._html_extract_title(webpage)
4ea3137e
M
89
90 return {
91 'id': video_id,
92 'formats': formats,
93 'title': video_title,
94 'thumbnail': video_thumbnail,
95 'duration': duration,
96 'description': None,
97 'age_limit': 18
98 }