Browse Source

Extract xHamster title fix

totalwebcasting
atomic83 9 years ago
parent
commit
5777f5d386
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/xhamster.py

+ 1
- 1
youtube_dl/extractor/xhamster.py View File

@ -65,7 +65,7 @@ class XHamsterIE(InfoExtractor):
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)


Loading…
Cancel
Save