XHamsterIE: Fix video extension

Cut off GET parameter
This commit is contained in:
rzhxeo 2013-08-23 16:33:41 +02:00
parent 67fb0c5495
commit ce34e9ce5e

View file

@ -36,7 +36,7 @@ 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_extension = video_url.split('.')[-1].split('?')[0]
video_title = self._html_search_regex(r'<title>(?P<title>.+?) - xHamster\.com</title>',
webpage, u'title')