youtube-dl/youtube_dl/extractor/xnxx.py

98 lines
3.4 KiB
Python
Raw Normal View History

2016-10-02 20:39:18 +09:00
# coding: utf-8
2014-03-10 01:22:53 +09:00
from __future__ import unicode_literals
2018-03-11 01:13:14 +09:00
import re
2013-06-24 05:01:57 +09:00
from .common import InfoExtractor
2018-03-11 01:13:14 +09:00
from ..utils import (
determine_ext,
int_or_none,
NO_DEFAULT,
str_to_int,
)
2013-06-24 05:01:57 +09:00
class XNXXIE(InfoExtractor):
_VALID_URL = r'https?://(?:video|www)\.xnxx\.com/video-?(?P<id>[0-9a-z]+)/'
_TESTS = [{
2016-06-23 06:24:00 +09:00
'url': 'http://www.xnxx.com/video-55awb78/skyrim_test_video',
2022-02-27 00:13:05 +09:00
'md5': '73c071a361a09aae7e7d60008221fd13',
2014-03-10 01:22:53 +09:00
'info_dict': {
2016-06-23 06:24:00 +09:00
'id': '55awb78',
2018-03-11 01:13:14 +09:00
'ext': 'mp4',
2016-06-23 06:24:00 +09:00
'title': 'Skyrim Test Video',
2018-03-11 01:13:14 +09:00
'thumbnail': r're:^https?://.*\.jpg',
'duration': 469,
'view_count': int,
2014-03-10 01:22:53 +09:00
'age_limit': 18,
2022-02-27 00:01:18 +09:00
'uploader': 'Glurp',
'uploader_id': 'Glurp',
'uploader_url': '/porn-maker/glurp',
},
}, {
'url': 'http://video.xnxx.com/video1135332/lida_naked_funny_actress_5_',
'only_matching': True,
}, {
'url': 'http://www.xnxx.com/video-55awb78/',
'only_matching': True,
}]
2013-06-24 05:01:57 +09:00
def _real_extract(self, url):
video_id = self._match_id(url)
2018-03-11 01:13:14 +09:00
2013-06-24 05:01:57 +09:00
webpage = self._download_webpage(url, video_id)
2018-03-11 01:13:14 +09:00
def get(meta, default=NO_DEFAULT, fatal=True):
return self._search_regex(
r'set%s\s*\(\s*(["\'])(?P<value>(?:(?!\1).)+)\1' % meta,
webpage, meta, default=default, fatal=fatal, group='value')
title = self._og_search_title(
webpage, default=None) or get('VideoTitle')
2013-06-24 05:01:57 +09:00
2018-03-11 01:13:14 +09:00
formats = []
for mobj in re.finditer(
r'setVideo(?:Url(?P<id>Low|High)|HLS)\s*\(\s*(?P<q>["\'])(?P<url>(?:https?:)?//.+?)(?P=q)', webpage):
format_url = mobj.group('url')
if determine_ext(format_url) == 'm3u8':
formats.extend(self._extract_m3u8_formats(
format_url, video_id, 'mp4', entry_protocol='m3u8_native',
preference=1, m3u8_id='hls', fatal=False))
else:
format_id = mobj.group('id')
if format_id:
format_id = format_id.lower()
formats.append({
'url': format_url,
'format_id': format_id,
'quality': -1 if format_id == 'low' else 0,
})
self._sort_formats(formats)
2013-06-24 05:01:57 +09:00
2018-03-11 01:13:14 +09:00
thumbnail = self._og_search_thumbnail(webpage, default=None) or get(
'ThumbUrl', fatal=False) or get('ThumbUrl169', fatal=False)
duration = int_or_none(self._og_search_property('duration', webpage))
view_count = str_to_int(self._search_regex(
2022-02-27 00:13:05 +09:00
r'-.+?\t+- (?P<views>.+?) <span class="icon-f icf-eye">', webpage, 'view count', group='views',
default=0))
2013-06-24 05:01:57 +09:00
2022-02-27 00:01:18 +09:00
uploader_data = re.findall(r'<a class="gold-plate" href="(?P<uploader_url>.+?)">(?P<uploader_name>.+?)</a>', webpage)
uploader_id = ''
uploader_url = ''
if uploader_data is not None:
uploader_id = uploader_data[0][1]
uploader_url = uploader_data[0][0]
2014-03-10 01:22:53 +09:00
return {
2013-06-24 05:01:57 +09:00
'id': video_id,
2018-03-11 01:13:14 +09:00
'title': title,
'thumbnail': thumbnail,
'duration': duration,
'view_count': view_count,
2013-10-19 06:35:17 +09:00
'age_limit': 18,
2018-03-11 01:13:14 +09:00
'formats': formats,
2022-02-27 00:01:18 +09:00
'uploader': uploader_id,
'uploader_id': uploader_id,
'uploader_url': uploader_url,
2014-03-10 01:22:53 +09:00
}