summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-05-13 10:05:20 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-05-13 10:05:20 +0200
commitb65c3e77e8fa893a41eb058102422f42276ebc11 (patch)
treefac0083b6d9116b19f5140fe27876961445127ea
parent5301304bf2785888454d41d27c20e743a2501f1a (diff)
parent749fe60c1eaa157db4360edf55cf41a10489f349 (diff)
downloadyoutube-dl-b65c3e77e8fa893a41eb058102422f42276ebc11.tar.gz
youtube-dl-b65c3e77e8fa893a41eb058102422f42276ebc11.tar.xz
youtube-dl-b65c3e77e8fa893a41eb058102422f42276ebc11.zip
Merge remote-tracking branch 'hojel/nuvid'
-rw-r--r--youtube_dl/extractor/__init__.py1
-rw-r--r--youtube_dl/extractor/nuvid.py39
2 files changed, 40 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index 5095f14b6..84a1830d0 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -195,6 +195,7 @@ from .nowvideo import NowVideoIE
 from .nrk import NRKIE
 from .ntv import NTVIE
 from .nytimes import NYTimesIE
+from .nuvid import NuvidIE
 from .oe1 import OE1IE
 from .ooyala import OoyalaIE
 from .orf import ORFIE
diff --git a/youtube_dl/extractor/nuvid.py b/youtube_dl/extractor/nuvid.py
new file mode 100644
index 000000000..2e5198c1a
--- /dev/null
+++ b/youtube_dl/extractor/nuvid.py
@@ -0,0 +1,39 @@
+import re
+
+from .common import InfoExtractor
+
+class NuvidIE(InfoExtractor):
+    _VALID_URL = r'^https?://(?:www|m)\.nuvid\.com/video/(?P<videoid>\d+)'
+    _TEST = {
+        u'url': u'http://m.nuvid.com/video/1310741/',
+        u'file': u'1310741.mp4',
+        u'md5': u'eab207b7ac4fccfb4e23c86201f11277',
+        u'info_dict': {
+            u"title": u"Horny babes show their awesome bodeis and",
+            u"age_limit": 18,
+        }
+    }
+
+    def _real_extract(self, url):
+        mobj = re.match(self._VALID_URL, url)
+
+        video_id = mobj.group('videoid')
+
+        # Get webpage content
+        murl = url.replace('//www.', '//m.')
+        webpage = self._download_webpage(murl, video_id)
+
+        video_title = self._html_search_regex(r'<div class="title">\s+<h2[^>]*>([^<]+)</h2>', webpage, 'video_title').strip()
+
+        video_url = 'http://m.nuvid.com'+self._html_search_regex(r'href="(/mp4/[^"]+)"[^>]*data-link_type="mp4"', webpage, 'video_url')
+
+        video_thumb = self._html_search_regex(r'href="(/thumbs/[^"]+)"[^>]*data-link_type="thumbs"', webpage, 'video_thumb')
+
+        info = {'id': video_id,
+                'url': video_url,
+                'title': video_title,
+                'thumbnail': video_thumb,
+                'ext': 'mp4',
+                'age_limit': 18}
+
+        return [info]