aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vidzi.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/vidzi.py')
-rw-r--r--youtube_dl/extractor/vidzi.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/youtube_dl/extractor/vidzi.py b/youtube_dl/extractor/vidzi.py
new file mode 100644
index 000000000..7d93dd301
--- /dev/null
+++ b/youtube_dl/extractor/vidzi.py
@@ -0,0 +1,30 @@
+import re
+from .common import InfoExtractor
+
+class VidziIE(InfoExtractor):
+ _VALID_URL = r'https?://(?:www\.)?vidzi\.tv/(?P<id>\w+)'
+ _TEST = {
+ 'url': 'http://vidzi.tv/m1chxrwq7bx9',
+ 'md5': '5c4c4a8ca2281a199c8eefe8f411d630',
+ 'info_dict': {
+ 'id': 'm1chxrwq7bx9',
+ 'ext': 'mp4',
+ 'title': 'Watch Cadbury Dream Factory S01E04 HDTV x264 FiHTV mp4',
+ },
+ }
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ video_id = mobj.group('id')
+
+ webpage = self._download_webpage('http://vidzi.tv/' + video_id, video_id)
+ video_url = self._html_search_regex(r'{\s*file\s*:\s*"([^"]+)"\s*}', webpage, u'vidzi url')
+ title = self._html_search_regex(r'<Title>([^<]+)<\/Title>', webpage, u'vidzi title')
+
+ return {
+ 'id': video_id,
+ 'title': title,
+ 'url': video_url,
+ 'ext': 'mp4',
+ }
+ \ No newline at end of file