about summary refs log tree commit diff
path: root/youtube_dl/extractor/drtuber.py
diff options
context:
space:
mode:
authorWindom <windom@users.noreply.github.com>2017-11-16 20:50:07 +0200
committerSergey M <dstftw@gmail.com>2017-11-17 01:50:07 +0700
commit38db52adf35c2134444e5b6b601e9567797e9195 (patch)
tree815c41743baff3518d096ff1262faab57efbadae /youtube_dl/extractor/drtuber.py
parent3192d4bc7a063983c3a82bc4320c16d65679307a (diff)
downloadyoutube-dl-38db52adf35c2134444e5b6b601e9567797e9195.tar.gz
youtube-dl-38db52adf35c2134444e5b6b601e9567797e9195.tar.xz
youtube-dl-38db52adf35c2134444e5b6b601e9567797e9195.zip
[drtuber] Add support for mobile URLs
Diffstat (limited to 'youtube_dl/extractor/drtuber.py')
-rw-r--r--youtube_dl/extractor/drtuber.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/drtuber.py b/youtube_dl/extractor/drtuber.py
index c5d56a9ad..c88b3126b 100644
--- a/youtube_dl/extractor/drtuber.py
+++ b/youtube_dl/extractor/drtuber.py
@@ -10,7 +10,7 @@ from ..utils import (
 
 
 class DrTuberIE(InfoExtractor):
-    _VALID_URL = r'https?://(?:www\.)?drtuber\.com/(?:video|embed)/(?P<id>\d+)(?:/(?P<display_id>[\w-]+))?'
+    _VALID_URL = r'https?://(?:(?:www|m)\.)?drtuber\.com/(?:video|embed)/(?P<id>\d+)(?:/(?P<display_id>[\w-]+))?'
     _TESTS = [{
         'url': 'http://www.drtuber.com/video/1740434/hot-perky-blonde-naked-golf',
         'md5': '93e680cf2536ad0dfb7e74d94a89facd',
@@ -28,6 +28,9 @@ class DrTuberIE(InfoExtractor):
     }, {
         'url': 'http://www.drtuber.com/embed/489939',
         'only_matching': True,
+    }, {
+        'url': 'http://m.drtuber.com/video/3893529/lingerie-blowjob-from-beautiful-teen',
+        'only_matching': True,
     }]
 
     @staticmethod