1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-08 01:43:32 +08:00

[xhamster] Fix title extraction (Closes #6944)

This commit is contained in:
Sergey M․
2015-09-24 19:56:54 +06:00
committed by dabiboo
Unverified
parent c4795a4168
commit 19765b643d
+3 -1
View File
@@ -63,7 +63,9 @@ class XHamsterIE(InfoExtractor):
mrss_url = '%s://xhamster.com/movies/%s/%s.html' % (proto, video_id, seo)
webpage = self._download_webpage(mrss_url, video_id)
title = self._html_search_regex(r'<title>(?P<title>.+?) - xHamster\.com</title>', webpage, 'title')
title = self._html_search_regex(
[r'<title>(?P<title>.+?)(?:, Free Porn: xHamster| - xHamster\.com)</title>',
r'<h1>([^<]+)</h1>'], webpage, 'title')
# Only a few videos have an description
mobj = re.search(r'<span>Description: </span>([^<]+)', webpage)