[spankwire] Simplify and properly format

pull/6673/head
Sergey M․ 9 years ago
parent 59e6acc757
commit 551c7837ac

@ -18,33 +18,34 @@ from ..aes import aes_decrypt_text
class SpankwireIE(InfoExtractor): class SpankwireIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?(?P<url>spankwire\.com/[^/]*/video(?P<videoid>[0-9]+)/?)' _VALID_URL = r'https?://(?:www\.)?(?P<url>spankwire\.com/[^/]*/video(?P<videoid>[0-9]+)/?)'
_TESTS = [{ _TESTS = [{
'url': 'http://www.spankwire.com/Buckcherry-s-X-Rated-Music-Video-Crazy-Bitch/video103545/', # download URL pattern: */<height>P_<tbr>K_<video_id>.mp4
'md5': '8bbfde12b101204b39e4b9fe7eb67095', 'url': 'http://www.spankwire.com/Buckcherry-s-X-Rated-Music-Video-Crazy-Bitch/video103545/',
'info_dict': { 'md5': '8bbfde12b101204b39e4b9fe7eb67095',
'id': '103545', 'info_dict': {
'ext': 'mp4', 'id': '103545',
'title': 'Buckcherry`s X Rated Music Video Crazy Bitch', 'ext': 'mp4',
'description': 'Crazy Bitch X rated music video.', 'title': 'Buckcherry`s X Rated Music Video Crazy Bitch',
'uploader': 'oreusz', 'description': 'Crazy Bitch X rated music video.',
'uploader_id': '124697', 'uploader': 'oreusz',
'upload_date': '20070507', 'uploader_id': '124697',
'age_limit': 18, 'upload_date': '20070507',
} 'age_limit': 18,
}, }
{ }, {
'url': 'http://www.spankwire.com/Titcums-Compiloation-I/video1921551/', # download URL pattern: */mp4_<format_id>_<video_id>.mp4
'md5': '09b3c20833308b736ae8902db2f8d7e6', 'url': 'http://www.spankwire.com/Titcums-Compiloation-I/video1921551/',
'info_dict': { 'md5': '09b3c20833308b736ae8902db2f8d7e6',
'id': '1921551', 'info_dict': {
'ext': 'mp4', 'id': '1921551',
'title': 'Titcums Compiloation I', 'ext': 'mp4',
'description': 'cum on tits', 'title': 'Titcums Compiloation I',
'uploader': 'dannyh78999', 'description': 'cum on tits',
'uploader_id': '3056053', 'uploader': 'dannyh78999',
'upload_date': '20150822', 'uploader_id': '3056053',
'age_limit': 18, 'upload_date': '20150822',
} 'age_limit': 18,
}] },
}]
def _real_extract(self, url): def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url) mobj = re.match(self._VALID_URL, url)
@ -81,9 +82,10 @@ class SpankwireIE(InfoExtractor):
r'<span\s+id="spCommentCount"[^>]*>([\d,\.]+)</span>', r'<span\s+id="spCommentCount"[^>]*>([\d,\.]+)</span>',
webpage, 'comment count', fatal=False)) webpage, 'comment count', fatal=False))
video_urls = list(map( videos = re.findall(
compat_urllib_parse_unquote, r'playerData\.cdnPath([0-9]{3,})\s*=\s*(?:encodeURIComponent\()?["\']([^"\']+)["\']', webpage)
re.findall(r'playerData\.cdnPath[0-9]{3,}\s*=\s*(?:encodeURIComponent\()?["\']([^"\']+)["\']', webpage))) heights = [int(video[0]) for video in videos]
video_urls = list(map(compat_urllib_parse_unquote, [video[1] for video in videos]))
if webpage.find('flashvars\.encrypted = "true"') != -1: if webpage.find('flashvars\.encrypted = "true"') != -1:
password = self._search_regex( password = self._search_regex(
r'flashvars\.video_title = "([^"]+)', r'flashvars\.video_title = "([^"]+)',
@ -93,39 +95,22 @@ class SpankwireIE(InfoExtractor):
video_urls)) video_urls))
formats = [] formats = []
for video_url in video_urls: for height, video_url in zip(heights, video_urls):
path = compat_urllib_parse_urlparse(video_url).path path = compat_urllib_parse_urlparse(video_url).path
format = path.split('/')[4].split('_')[:2] _, quality = path.split('/')[4].split('_')[:2]
if format[0] == 'mp4': f = {
format_id, quality = format 'url': video_url,
format = "-".join(format) 'height': height,
if quality == 'normal': }
height = 180 tbr = self._search_regex(r'^(\d+)[Kk]$', quality, 'tbr', default=None)
elif quality == 'high': if tbr:
height = 240 f.update({
elif quality == 'ultra': 'tbr': int(tbr),
height = 480 'format_id': '%dp' % height,
elif quality == '720p':
height = 720
formats.append({
'url': video_url,
'format': format,
'height': height,
'format_id': format,
}) })
else: else:
resolution, bitrate_str = format f['format_id'] = quality
format = "-".join(format) formats.append(f)
height = int(resolution.rstrip('Pp'))
tbr = int(bitrate_str.rstrip('Kk'))
formats.append({
'url': video_url,
'resolution': resolution,
'format': format,
'tbr': tbr,
'height': height,
'format_id': format,
})
self._sort_formats(formats) self._sort_formats(formats)
age_limit = self._rta_search(webpage) age_limit = self._rta_search(webpage)

Loading…
Cancel
Save