Merge remote-tracking branch 'origin/master'
authorPhilipp Hagemeister <phihag@phihag.de>
Mon, 3 Mar 2014 11:05:59 +0000 (12:05 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Mon, 3 Mar 2014 11:05:59 +0000 (12:05 +0100)
youtube_dl/extractor/__init__.py
youtube_dl/extractor/canal13cl.py [new file with mode: 0644]

index 5a6635f8db9638751782e191c89ced242e2e8f5a..e6755151c1b3c7766331b8a87839f8929236c4f6 100644 (file)
@@ -23,6 +23,7 @@ from .br import BRIE
 from .breakcom import BreakIE
 from .brightcove import BrightcoveIE
 from .c56 import C56IE
+from .canal13cl import Canal13clIE
 from .canalplus import CanalplusIE
 from .canalc2 import Canalc2IE
 from .cbs import CBSIE
diff --git a/youtube_dl/extractor/canal13cl.py b/youtube_dl/extractor/canal13cl.py
new file mode 100644 (file)
index 0000000..781c1b5
--- /dev/null
@@ -0,0 +1,32 @@
+from __future__ import unicode_literals
+import re
+
+from .common import InfoExtractor
+
+
+class Canal13clIE(InfoExtractor):
+    _VALID_URL = r'^http://(?:www\.)?13\.cl/'
+    IE_NAME = 'Canal13cl'
+
+    def _real_extract(self, url):
+        webpage = self._download_webpage(url, url)
+        video_id = self._html_search_regex(
+            r'http://streaming.13.cl/(.*)\.mp4',
+            webpage, u'video_id')
+        title = self._html_search_regex(
+            r'(articuloTitulo = \"(.*?)\"|(.*?)\|)',
+            webpage, u'title')
+        url = self._html_search_regex(
+            r'articuloVideo = \"(.*?)\"',
+            webpage, u'url')
+        thumbnail = self._html_search_regex (
+            r'articuloImagen = \"(.*?)\"',
+            webpage, u'thumbnail')
+
+        return {
+            'video_id': video_id,
+            'url': url,
+            'title': title,
+            'ext': 'mp4',
+            'thumbnail': thumbnail
+        }