[xhamster] url regex fix for videos with empty title.
authormexican porn commits <xyz71412@laoeq.com>
Mon, 23 May 2016 21:32:39 +0000 (16:32 -0500)
committerSergey M․ <dstftw@gmail.com>
Tue, 24 May 2016 15:35:43 +0000 (21:35 +0600)
youtube_dl/extractor/xhamster.py

index b3547174dd92beffafaf8f220b50b94a25f2fa2b..314e5020de0ec83e0bf20c72772f843dca71e45f 100644 (file)
@@ -12,7 +12,7 @@ from ..utils import (
 
 
 class XHamsterIE(InfoExtractor):
-    _VALID_URL = r'(?P<proto>https?)://(?:.+?\.)?xhamster\.com/movies/(?P<id>[0-9]+)/(?P<seo>.+?)\.html(?:\?.*)?'
+    _VALID_URL = r'(?P<proto>https?)://(?:.+?\.)?xhamster\.com/movies/(?P<id>[0-9]+)/(?P<seo>.*?)\.html(?:\?.*)?'
     _TESTS = [
         {
             'url': 'http://xhamster.com/movies/1509445/femaleagent_shy_beauty_takes_the_bait.html',
@@ -38,6 +38,18 @@ class XHamsterIE(InfoExtractor):
                 'age_limit': 18,
             }
         },
+        {
+            'url': 'http://xhamster.com/movies/5667973/.html',
+            'info_dict': {
+                'id': '5667973',
+                'ext': 'mp4',
+                'title': '....',
+                'upload_date': '20160208',
+                'uploader': 'parejafree',
+                'duration': 72.0,
+                'age_limit': 18,
+            }
+        },
         {
             'url': 'https://xhamster.com/movies/2272726/amber_slayed_by_the_knight.html',
             'only_matching': True,
@@ -170,7 +182,7 @@ class XHamsterEmbedIE(InfoExtractor):
         webpage = self._download_webpage(url, video_id)
 
         video_url = self._search_regex(
-            r'href="(https?://xhamster\.com/movies/%s/[^"]+\.html[^"]*)"' % video_id,
+            r'href="(https?://xhamster\.com/movies/%s/[^"]*\.html[^"]*)"' % video_id,
             webpage, 'xhamster url', default=None)
 
         if not video_url: