add video description to xhamster extractor

Only a few videos have an video description
This commit is contained in:
rzhxeo 2013-08-08 19:21:05 +02:00
parent 67fb0c5495
commit 92d6e74987

View File

@ -3,7 +3,7 @@ import re
from .common import InfoExtractor from .common import InfoExtractor
from ..utils import ( from ..utils import (
compat_urllib_parse, compat_urllib_parse,
unescapeHTML,
ExtractorError, ExtractorError,
) )
@ -41,10 +41,9 @@ class XHamsterIE(InfoExtractor):
video_title = self._html_search_regex(r'<title>(?P<title>.+?) - xHamster\.com</title>', video_title = self._html_search_regex(r'<title>(?P<title>.+?) - xHamster\.com</title>',
webpage, u'title') webpage, u'title')
# Can't see the description anywhere in the UI video_description = self._html_search_regex(r'<span>Description: </span>(?P<description>[^<]+)',
# video_description = self._html_search_regex(r'<span>Description: </span>(?P<description>[^<]+)', webpage, u'description', fatal=False)
# webpage, u'description', fatal=False) if video_description: video_description = unescapeHTML(video_description)
# if video_description: video_description = unescapeHTML(video_description)
mobj = re.search(r'hint=\'(?P<upload_date_Y>[0-9]{4})-(?P<upload_date_m>[0-9]{2})-(?P<upload_date_d>[0-9]{2}) [0-9]{2}:[0-9]{2}:[0-9]{2} [A-Z]{3,4}\'', webpage) mobj = re.search(r'hint=\'(?P<upload_date_Y>[0-9]{4})-(?P<upload_date_m>[0-9]{2})-(?P<upload_date_d>[0-9]{2}) [0-9]{2}:[0-9]{2}:[0-9]{2} [A-Z]{3,4}\'', webpage)
if mobj: if mobj:
@ -64,7 +63,7 @@ class XHamsterIE(InfoExtractor):
'url': video_url, 'url': video_url,
'ext': video_extension, 'ext': video_extension,
'title': video_title, 'title': video_title,
# 'description': video_description, 'description': video_description,
'upload_date': video_upload_date, 'upload_date': video_upload_date,
'uploader_id': video_uploader_id, 'uploader_id': video_uploader_id,
'thumbnail': video_thumbnail 'thumbnail': video_thumbnail