[traileraddict] fix info extraction

This commit is contained in:
remitamine 2015-09-19 20:39:52 +01:00
parent 749b09616d
commit 8873974e79

View File

@ -1,64 +1,70 @@
# coding: utf-8
from __future__ import unicode_literals from __future__ import unicode_literals
import re from string import ascii_lowercase
from hashlib import md5
from .common import InfoExtractor from .common import InfoExtractor
from ..utils import int_or_none
from ..compat import compat_parse_qs
class TrailerAddictIE(InfoExtractor): class TrailerAddictIE(InfoExtractor):
_WORKING = False _VALID_URL = r'https?://(?:www\.)?traileraddict\.com/(?P<id>.+)'
_VALID_URL = r'(?:http://)?(?:www\.)?traileraddict\.com/(?:trailer|clip)/(?P<movie>.+?)/(?P<trailer_name>.+)'
_TEST = { _TEST = {
'url': 'http://www.traileraddict.com/trailer/prince-avalanche/trailer', 'url': 'http://www.traileraddict.com/prince-avalanche/trailer',
'md5': '41365557f3c8c397d091da510e73ceb4', 'md5': '57e39dbcf4142ceb8e1f242ff423fd71',
'info_dict': { 'info_dict': {
'id': '76184', 'id': '76184',
'ext': 'mp4', 'ext': 'mp4',
'title': 'Prince Avalanche Trailer', 'title': 'Prince Avalanche (2013) Trailer',
'description': 'Trailer for Prince Avalanche.\n\nTwo highway road workers spend the summer of 1988 away from their city lives. The isolated landscape becomes a place of misadventure as the men find themselves at odds with each other and the women they left behind.', 'description': 'Trailer for Prince Avalanche. Two highway road workers spend the summer of 1988 away from their city lives. The isolated landscape becomes a place of misadventure as the men find...',
} }
} }
def _get_video_info(self, video_id):
hash_str = ''
for num in video_id:
hash_str += ascii_lowercase[int(num)]
hash_str += video_id
token = md5(hash_str.encode()).hexdigest()[2:7]
return compat_parse_qs(self._download_webpage(
'http://v.traileraddict.com/js/flash/fv-secure.php?tid=%s&token=%s' % (video_id, token),
video_id))
def _real_extract(self, url): def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url) display_id = self._match_id(url)
name = mobj.group('movie') + '/' + mobj.group('trailer_name') webpage = self._download_webpage(url, display_id)
webpage = self._download_webpage(url, name)
title = self._search_regex(r'<title>(.+?)</title>', title = self._og_search_title(webpage)
webpage, 'video title').replace(' - Trailer Addict', '') description = self._og_search_description(webpage)
view_count_str = self._search_regex( thumbnail_url = self._og_search_thumbnail(webpage)
r'<span class="views_n">([0-9,.]+)</span>', embed_url = self._html_search_meta('embedUrl', webpage, 'embed url')
webpage, 'view count', fatal=False) video_id = self._search_regex('/em[bd]/(\d+)', embed_url, 'video id')
view_count = (
None if view_count_str is None
else int(view_count_str.replace(',', '')))
video_id = self._search_regex(
r'<param\s+name="movie"\s+value="/emb/([0-9]+)"\s*/>',
webpage, 'video id')
# Presence of (no)watchplus function indicates HD quality is available video_info = self._get_video_info(video_id)
if re.search(r'function (no)?watchplus()', webpage):
fvar = "fvarhd"
else:
fvar = "fvar"
info_url = "http://www.traileraddict.com/%s.php?tid=%s" % (fvar, str(video_id)) formats = [{
info_webpage = self._download_webpage(info_url, video_id, "Downloading the info webpage") 'url': video_info['fileurl'][0].strip(),
'width': int_or_none(video_info.get('vidwidth')[0]),
'height': int_or_none(video_info.get('vidheight')[0]),
'format_id': 'sd',
}]
final_url = self._search_regex(r'&fileurl=(.+)', if video_info.get('hdurl')[0].startswith('http://'):
info_webpage, 'Download url').replace('%3F', '?') formats.append({
thumbnail_url = self._search_regex(r'&image=(.+?)&', 'url': video_info['hdurl'][0].strip(),
info_webpage, 'thumbnail url') 'width': int_or_none(video_info.get('hd_vidwidth')[0]),
'height': int_or_none(video_info.get('hd_vidheight')[0]),
'format_id': 'hd',
})
description = self._html_search_regex( self._sort_formats(formats)
r'(?s)<div class="synopsis">.*?<div class="movie_label_info"[^>]*>(.*?)</div>',
webpage, 'description', fatal=False)
return { return {
'id': video_id, 'id': video_id,
'url': final_url,
'title': title, 'title': title,
'thumbnail': thumbnail_url, 'thumbnail': thumbnail_url,
'description': description, 'description': description,
'view_count': view_count, 'formats': formats,
} }