Explorar el Código

Merge pull request #8182 from atomic83/patch-1

Extract xHamster title fix
Sergey M hace 9 años
padre
commit
7e182627d9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      youtube_dl/extractor/xhamster.py

+ 1 - 1
youtube_dl/extractor/xhamster.py

@@ -65,7 +65,7 @@ class XHamsterIE(InfoExtractor):
 
 
         title = self._html_search_regex(
         title = self._html_search_regex(
             [r'<title>(?P<title>.+?)(?:, (?:[^,]+? )?Porn: xHamster| - xHamster\.com)</title>',
             [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
         # Only a few videos have an description
         mobj = re.search(r'<span>Description: </span>([^<]+)', webpage)
         mobj = re.search(r'<span>Description: </span>([^<]+)', webpage)