mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
XHamsterIE: Fix video extension
Cut off GET parameter
This commit is contained in:
parent
67fb0c5495
commit
ce34e9ce5e
@ -36,7 +36,7 @@ def _real_extract(self,url):
|
||||
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')
|
||||
|
Loading…
Reference in New Issue
Block a user