summary refs log tree commit diff
diff options
context:
space:
mode:
authorJChris246 <43832407+JChris246@users.noreply.github.com>2020-08-12 10:37:22 -0400
committerGitHub <noreply@github.com>2020-08-12 21:37:22 +0700
commit6cb30ea5eddb2db4a2536d1b851f4cc45f427d3c (patch)
tree214f4dd2a986d2a92375cf50aca77a213b2055e6
parenta4ed50bb84658b7e77cbb37597c36fa62a9acd4b (diff)
downloadyoutube-dl-6cb30ea5eddb2db4a2536d1b851f4cc45f427d3c.tar.gz
youtube-dl-6cb30ea5eddb2db4a2536d1b851f4cc45f427d3c.tar.xz
youtube-dl-6cb30ea5eddb2db4a2536d1b851f4cc45f427d3c.zip
[xhamster] Extend _VALID_URL (closes #25789) (#25804)
-rw-r--r--youtube_dl/extractor/xhamster.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py
index 0f7be6a7d..72ce5e1d3 100644
--- a/youtube_dl/extractor/xhamster.py
+++ b/youtube_dl/extractor/xhamster.py
@@ -25,8 +25,8 @@ class XHamsterIE(InfoExtractor):
                     https?://
                         (?:.+?\.)?%s/
                         (?:
-                            movies/(?P<id>\d+)/(?P<display_id>[^/]*)\.html|
-                            videos/(?P<display_id_2>[^/]*)-(?P<id_2>\d+)
+                            movies/(?P<id>[\dA-Za-z]+)/(?P<display_id>[^/]*)\.html|
+                            videos/(?P<display_id_2>[^/]*)-(?P<id_2>[\dA-Za-z]+)
                         )
                     ''' % _DOMAINS
     _TESTS = [{
@@ -105,6 +105,9 @@ class XHamsterIE(InfoExtractor):
     }, {
         'url': 'http://xhamster.com/movies/2221348/britney_spears_sexy_booty.html?hd',
         'only_matching': True,
+    }, {
+        'url': 'http://de.xhamster.com/videos/skinny-girl-fucks-herself-hard-in-the-forest-xhnBJZx',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):