Download from utv.unistra.fr (PR #1271)
authorPierre Rudloff <pierre@rudloff.pro>
Sun, 18 Aug 2013 15:02:39 +0000 (17:02 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Thu, 22 Aug 2013 10:58:12 +0000 (12:58 +0200)
Squashed to a single commit to keep the file 'youtube-dl' unchanged and remove the revert commit.

youtube_dl/extractor/__init__.py
youtube_dl/extractor/utv.py [new file with mode: 0644]

index 9d12608e1b7f8cf23d7b2a6f64798b6d2cb60512..5830511695776e0e508a3e889c5455643ee1e96c 100644 (file)
@@ -75,6 +75,7 @@ from .tudou import TudouIE
 from .tumblr import TumblrIE
 from .tutv import TutvIE
 from .ustream import UstreamIE
+from .utv import UTVIE
 from .vbox7 import Vbox7IE
 from .veoh import VeohIE
 from .vevo import VevoIE
diff --git a/youtube_dl/extractor/utv.py b/youtube_dl/extractor/utv.py
new file mode 100644 (file)
index 0000000..013e86a
--- /dev/null
@@ -0,0 +1,22 @@
+import re
+
+from .common import InfoExtractor
+
+class UTVIE(InfoExtractor):
+    _VALID_URL = r'http://utv.unistra.fr/index.php\?id_video\=(\d+)'
+
+    def _real_extract(self, url):
+        id = re.match(self._VALID_URL, url).group(1)
+        webpage = self._download_webpage(url, id)
+        url = re.search(r'file: "(.*?)",', webpage).group(1)
+        title = re.search(r'/utv/\d+/.*/(.*?).mp4', url).group(1)
+        
+        video_url = 'http://vod-flash.u-strasbg.fr:8080/' + url
+
+        track_info = {'id':id,
+                      'title' : title,
+                      'ext' :   'mp4',
+                      'url' :   video_url
+                      }
+
+        return [track_info]