about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWindom <windom@users.noreply.github.com>2017-12-30 20:41:07 +0200
committerSergey M <dstftw@gmail.com>2017-12-31 01:41:07 +0700
commit4f5cf319772b693c7781de47dbc5451c3c18a81c (patch)
treebca8776b172fd334cd38416ea5fd571425a39be5
parent77341dae1418fa1442bdc7689e428450ff83e5d9 (diff)
downloadyoutube-dl-4f5cf319772b693c7781de47dbc5451c3c18a81c.tar.gz
youtube-dl-4f5cf319772b693c7781de47dbc5451c3c18a81c.tar.xz
youtube-dl-4f5cf319772b693c7781de47dbc5451c3c18a81c.zip
[slutload] Add support for mobile URLs
-rw-r--r--youtube_dl/extractor/slutload.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/youtube_dl/extractor/slutload.py b/youtube_dl/extractor/slutload.py
index 7145d285a..6fc2ff60d 100644
--- a/youtube_dl/extractor/slutload.py
+++ b/youtube_dl/extractor/slutload.py
@@ -1,11 +1,13 @@
 from __future__ import unicode_literals
 
+import re
+
 from .common import InfoExtractor
 
 
 class SlutloadIE(InfoExtractor):
     _VALID_URL = r'^https?://(?:\w+\.)?slutload\.com/video/[^/]+/(?P<id>[^/]+)/?$'
-    _TEST = {
+    _TESTS = [{
         'url': 'http://www.slutload.com/video/virginie-baisee-en-cam/TD73btpBqSxc/',
         'md5': '868309628ba00fd488cf516a113fd717',
         'info_dict': {
@@ -15,11 +17,17 @@ class SlutloadIE(InfoExtractor):
             'age_limit': 18,
             'thumbnail': r're:https?://.*?\.jpg'
         }
-    }
+    }, {
+        # mobile site
+        'url': 'http://mobile.slutload.com/video/masturbation-solo/fviFLmc6kzJ/',
+        'only_matching': True,
+    }]
 
     def _real_extract(self, url):
         video_id = self._match_id(url)
-        webpage = self._download_webpage(url, video_id)
+
+        desktop_url = re.sub(r'^(https?://)mobile\.', r'\1', url)
+        webpage = self._download_webpage(desktop_url, video_id)
 
         video_title = self._html_search_regex(r'<h1><strong>([^<]+)</strong>',
                                               webpage, 'title').strip()