1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 21:51:02 +02:00

Extract xHamster title fix

This commit is contained in:
atomic83 2016-01-08 12:58:05 +01:00
parent 5dbe81a1d3
commit 5777f5d386

View File

@ -65,7 +65,7 @@ def is_hd(webpage):
title = self._html_search_regex(
[r'<title>(?P<title>.+?)(?:, (?:[^,]+? )?Porn: xHamster| - xHamster\.com)</title>',
r'<h1>([^<]+)</h1>'], webpage, 'title')
r'<h1(?: itemprop="name")?>([^<]+)</h1>'], webpage, 'title')
# Only a few videos have an description
mobj = re.search(r'<span>Description: </span>([^<]+)', webpage)