1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
6 from ..compat
import compat_urllib_parse_unquote
16 class XVideosIE(InfoExtractor
):
17 _VALID_URL
= r
'https?://(?:www\.)?xvideos\.com/video(?P<id>[0-9]+)(?:.*)'
19 'url': 'http://www.xvideos.com/video4588838/biker_takes_his_girl',
20 'md5': '14cea69fcb84db54293b1e971466c2e1',
24 'title': 'Biker Takes his Girl',
30 def _real_extract(self
, url
):
31 video_id
= self
._match
_id
(url
)
32 webpage
= self
._download
_webpage
(url
, video_id
)
34 mobj
= re
.search(r
'<h1 class="inlineError">(.+?)</h1>', webpage
)
36 raise ExtractorError('%s said: %s' % (self
.IE_NAME
, clean_html(mobj
.group(1))), expected
=True)
38 video_title
= self
._html
_search
_regex
(
39 r
'<title>(.*?)\s+-\s+XVID', webpage
, 'title')
40 video_thumbnail
= self
._search
_regex
(
41 r
'url_bigthumb=(.+?)&', webpage
, 'thumbnail', fatal
=False)
42 video_duration
= int_or_none(self
._og
_search
_property
(
43 'duration', webpage
, default
=None)) or parse_duration(
45 r
'<span[^>]+class=["\']duration
["\'][^>]*>.*?(\d[^<]+)',
46 webpage, 'duration', fatal=False))
50 video_url = compat_urllib_parse_unquote(self._search_regex(
51 r'flv_url=(.+?)&', webpage, 'video URL', default=''))
58 for kind, _, format_url in re.findall(
59 r'setVideo([^(]+)\((["\'])(http
.+?
)\
2\
)', webpage):
60 format_id = kind.lower()
61 if format_id == 'hls
':
62 formats.extend(self._extract_m3u8_formats(
63 format_url, video_id, 'mp4
',
64 entry_protocol='m3u8_native
', m3u8_id='hls
', fatal=False))
65 elif format_id in ('urllow
', 'urlhigh
'):
68 'format_id
': '%s-%s' % (determine_ext(format_url, 'mp4
'), format_id[3:]),
69 'quality
': -2 if format_id.endswith('low
') else None,
72 self._sort_formats(formats)
78 'duration
': video_duration,
79 'thumbnail
': video_thumbnail,