diff options
| author | Pierre Rudloff <contact@rudloff.pro> | 2013-08-24 23:01:39 +0200 | 
|---|---|---|
| committer | Pierre Rudloff <contact@rudloff.pro> | 2013-08-24 23:01:39 +0200 | 
| commit | 5c6658d4dd5ea4f25e8ae8b62a47b09f164cd30b (patch) | |
| tree | 1d96bd8eb6b4cb941ba11d8e80a961878ffb1cdc /youtube_dl/extractor/xhamster.py | |
| parent | adeb9c73d638090349243383eca0c3c7ebc1e6bc (diff) | |
| parent | 9585f890f8c0eff70eb874c7962dc30baea1049c (diff) | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'youtube_dl/extractor/xhamster.py')
| -rw-r--r-- | youtube_dl/extractor/xhamster.py | 18 | 
1 files changed, 10 insertions, 8 deletions
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py index 0f1feeffd..88b8b6be0 100644 --- a/youtube_dl/extractor/xhamster.py +++ b/youtube_dl/extractor/xhamster.py @@ -3,7 +3,8 @@ import re  from .common import InfoExtractor  from ..utils import (      compat_urllib_parse, - +    unescapeHTML, +    determine_ext,      ExtractorError,  ) @@ -36,15 +37,16 @@ class XHamsterIE(InfoExtractor):              video_url = compat_urllib_parse.unquote(mobj.group('file'))          else:              video_url = mobj.group('server')+'/key='+mobj.group('file') -        video_extension = video_url.split('.')[-1]          video_title = self._html_search_regex(r'<title>(?P<title>.+?) - xHamster\.com</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>[^<]+)', -        #     webpage, u'description', fatal=False) -        # if video_description: video_description = unescapeHTML(video_description) +        # Only a few videos have an description +        mobj = re.search('<span>Description: </span>(?P<description>[^<]+)', webpage) +        if mobj: +            video_description = unescapeHTML(mobj.group('description')) +        else: +            video_description = None          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: @@ -62,9 +64,9 @@ class XHamsterIE(InfoExtractor):          return [{              'id':       video_id,              'url':      video_url, -            'ext':      video_extension, +            'ext':      determine_ext(video_url),              'title':    video_title, -            # 'description': video_description, +            'description': video_description,              'upload_date': video_upload_date,              'uploader_id': video_uploader_id,              'thumbnail': video_thumbnail  | 
