Adding pyvideo support
authorAdam Glenn <gekitsuu@gmail.com>
Sat, 7 Dec 2013 05:11:01 +0000 (21:11 -0800)
committerAdam Glenn <gekitsuu@gmail.com>
Sat, 7 Dec 2013 05:11:01 +0000 (21:11 -0800)
youtube_dl/extractor/__init__.py
youtube_dl/extractor/pyvideo.py [new file with mode: 0644]

index f6a23f6633fdf3a63830c814eb0ef47e5dde131e..d7cb6e463565cc560f63c346e2524183b587af7a 100644 (file)
@@ -111,6 +111,7 @@ from .photobucket import PhotobucketIE
 from .podomatic import PodomaticIE
 from .pornhub import PornHubIE
 from .pornotube import PornotubeIE
+from .pyvideo import PyvideoIE
 from .rbmaradio import RBMARadioIE
 from .redtube import RedTubeIE
 from .ringtv import RingTVIE
diff --git a/youtube_dl/extractor/pyvideo.py b/youtube_dl/extractor/pyvideo.py
new file mode 100644 (file)
index 0000000..243dff8
--- /dev/null
@@ -0,0 +1,26 @@
+import re
+
+from .common import InfoExtractor
+from ..utils import determine_ext
+
+
+class PyvideoIE(InfoExtractor):
+    _VALID_URL = r'(?:http://)?(?:www\.)?break\.com/video/([^/]+)'
+    _VALID_URL = r'(?:http://)?(?:www\.)?pyvideo\.org/video/(\d+)/(.*)'
+    _TEST = {
+        u'url': u'http://pyvideo.org/video/1737/become-a-logging-expert-in-30-minutes',
+        u'file': u'Become a logging expert in 30 minutes-24_4WWkSmNo.mp4',
+        u'md5': u'bf08cae24e1601027f98ae1262c299ad',
+        u'info_dict': {
+            u"title": u"Become a logging expert in 30 minutes"
+        }
+    }
+
+    def _real_extract(self, url):
+        mobj = re.match(self._VALID_URL, url)
+        video_id = mobj.group(2)
+        webpage = self._download_webpage(url, video_id)
+        m_youtube = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', webpage)
+
+        if m_youtube is not None:
+            return self.url_result(m_youtube.group(1), 'Youtube')