2014-01-17 02:25:59 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-10-26 23:59:26 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
compat_urllib_parse_urlparse,
|
|
|
|
compat_urllib_request,
|
|
|
|
compat_urllib_parse,
|
2014-02-22 09:45:03 +00:00
|
|
|
unified_strdate,
|
|
|
|
str_to_int,
|
|
|
|
int_or_none,
|
2013-10-26 23:59:26 +00:00
|
|
|
)
|
2014-02-22 09:45:03 +00:00
|
|
|
from ..aes import aes_decrypt_text
|
2013-10-26 23:59:26 +00:00
|
|
|
|
2014-01-17 02:25:59 +00:00
|
|
|
|
2013-10-26 23:59:26 +00:00
|
|
|
class SpankwireIE(InfoExtractor):
|
2014-02-22 09:45:03 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?(?P<url>spankwire\.com/[^/]*/video(?P<videoid>[0-9]+)/?)'
|
2013-10-26 23:59:26 +00:00
|
|
|
_TEST = {
|
2014-01-17 02:25:59 +00:00
|
|
|
'url': 'http://www.spankwire.com/Buckcherry-s-X-Rated-Music-Video-Crazy-Bitch/video103545/',
|
2014-02-22 09:45:03 +00:00
|
|
|
'md5': '8bbfde12b101204b39e4b9fe7eb67095',
|
2014-01-17 02:25:59 +00:00
|
|
|
'info_dict': {
|
2014-02-22 09:45:03 +00:00
|
|
|
'id': '103545',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Buckcherry`s X Rated Music Video Crazy Bitch',
|
|
|
|
'description': 'Crazy Bitch X rated music video.',
|
|
|
|
'uploader': 'oreusz',
|
|
|
|
'uploader_id': '124697',
|
|
|
|
'upload_date': '20070508',
|
|
|
|
'age_limit': 18,
|
2013-10-26 23:59:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
video_id = mobj.group('videoid')
|
|
|
|
url = 'http://www.' + mobj.group('url')
|
|
|
|
|
|
|
|
req = compat_urllib_request.Request(url)
|
|
|
|
req.add_header('Cookie', 'age_verified=1')
|
|
|
|
webpage = self._download_webpage(req, video_id)
|
|
|
|
|
2014-02-22 09:45:03 +00:00
|
|
|
title = self._html_search_regex(r'<h1>([^<]+)', webpage, 'title')
|
2013-11-20 06:45:32 +00:00
|
|
|
description = self._html_search_regex(
|
2014-01-17 02:25:59 +00:00
|
|
|
r'<div\s+id="descriptionContent">([^<]+)<', webpage, 'description', fatal=False)
|
2014-02-22 09:45:03 +00:00
|
|
|
thumbnail = self._html_search_regex(
|
|
|
|
r'flashvars\.image_url = "([^"]+)', webpage, 'thumbnail', fatal=False)
|
|
|
|
|
|
|
|
uploader = self._html_search_regex(
|
|
|
|
r'by:\s*<a [^>]*>(.+?)</a>', webpage, 'uploader', fatal=False)
|
|
|
|
uploader_id = self._html_search_regex(
|
2014-02-22 09:50:08 +00:00
|
|
|
r'by:\s*<a href="/Profile\.aspx\?.*?UserId=(\d+).*?"', webpage, 'uploader id', fatal=False)
|
2014-02-22 09:45:03 +00:00
|
|
|
upload_date = self._html_search_regex(r'</a> on (.+?) at \d+:\d+', webpage, 'upload date', fatal=False)
|
|
|
|
if upload_date:
|
|
|
|
upload_date = unified_strdate(upload_date)
|
|
|
|
|
|
|
|
view_count = self._html_search_regex(
|
|
|
|
r'<div id="viewsCounter"><span>([^<]+)</span> views</div>', webpage, 'view count', fatal=False)
|
|
|
|
if view_count:
|
|
|
|
view_count = str_to_int(view_count)
|
|
|
|
comment_count = int_or_none(self._html_search_regex(
|
|
|
|
r'<span id="spCommentCount">\s*(\d+)</span> Comments</div>', webpage, 'comment count', fatal=False))
|
2013-10-26 23:59:26 +00:00
|
|
|
|
|
|
|
video_urls = list(map(compat_urllib_parse.unquote , re.findall(r'flashvars\.quality_[0-9]{3}p = "([^"]+)', webpage)))
|
|
|
|
if webpage.find('flashvars\.encrypted = "true"') != -1:
|
2014-01-17 02:25:59 +00:00
|
|
|
password = self._html_search_regex(r'flashvars\.video_title = "([^"]+)', webpage, 'password').replace('+', ' ')
|
2013-10-26 23:59:26 +00:00
|
|
|
video_urls = list(map(lambda s: aes_decrypt_text(s, password, 32).decode('utf-8'), video_urls))
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
for video_url in video_urls:
|
2013-11-03 13:03:17 +00:00
|
|
|
path = compat_urllib_parse_urlparse(video_url).path
|
2013-10-26 23:59:26 +00:00
|
|
|
format = path.split('/')[4].split('_')[:2]
|
2014-01-17 02:25:59 +00:00
|
|
|
resolution, bitrate_str = format
|
2013-11-03 13:03:17 +00:00
|
|
|
format = "-".join(format)
|
2014-02-22 09:45:03 +00:00
|
|
|
height = int(resolution.rstrip('Pp'))
|
|
|
|
tbr = int(bitrate_str.rstrip('Kk'))
|
2013-10-26 23:59:26 +00:00
|
|
|
formats.append({
|
|
|
|
'url': video_url,
|
2014-01-17 02:25:59 +00:00
|
|
|
'resolution': resolution,
|
2013-10-26 23:59:26 +00:00
|
|
|
'format': format,
|
2014-01-17 02:25:59 +00:00
|
|
|
'tbr': tbr,
|
|
|
|
'height': height,
|
2013-10-26 23:59:26 +00:00
|
|
|
'format_id': format,
|
|
|
|
})
|
2014-01-17 02:25:59 +00:00
|
|
|
self._sort_formats(formats)
|
2013-10-26 23:59:26 +00:00
|
|
|
|
2013-10-28 05:50:17 +00:00
|
|
|
age_limit = self._rta_search(webpage)
|
|
|
|
|
2013-10-26 23:59:26 +00:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
2014-02-22 09:45:03 +00:00
|
|
|
'title': title,
|
2013-10-26 23:59:26 +00:00
|
|
|
'description': description,
|
2014-02-22 09:45:03 +00:00
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'uploader': uploader,
|
|
|
|
'uploader_id': uploader_id,
|
|
|
|
'upload_date': upload_date,
|
|
|
|
'view_count': view_count,
|
|
|
|
'comment_count': comment_count,
|
2013-10-26 23:59:26 +00:00
|
|
|
'formats': formats,
|
2013-10-28 05:50:17 +00:00
|
|
|
'age_limit': age_limit,
|
2013-10-26 23:59:26 +00:00
|
|
|
}
|