summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-07-11 13:34:19 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-07-11 13:34:19 +0200
commit38ad119f97cba871d34b057050547ba56b3e54c6 (patch)
treea9af63df5ae08d3d1f1c7ef7d61a64c95478e268
parent4e415288d73f3ec15a0b2854de79c7359d1ae6fe (diff)
downloadyoutube-dl-38ad119f97cba871d34b057050547ba56b3e54c6.tar.gz
youtube-dl-38ad119f97cba871d34b057050547ba56b3e54c6.tar.xz
youtube-dl-38ad119f97cba871d34b057050547ba56b3e54c6.zip
[screencast] Add new extractor (Fixes #3236)
-rw-r--r--youtube_dl/extractor/__init__.py1
-rw-r--r--youtube_dl/extractor/screencast.py48
2 files changed, 49 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index fcc7d0b58..15d2f0e2a 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -248,6 +248,7 @@ from .rutube import (
 from .rutv import RUTVIE
 from .savefrom import SaveFromIE
 from .scivee import SciVeeIE
+from .screencast import ScreencastIE
 from .servingsys import ServingSysIE
 from .sina import SinaIE
 from .slideshare import SlideshareIE
diff --git a/youtube_dl/extractor/screencast.py b/youtube_dl/extractor/screencast.py
new file mode 100644
index 000000000..f2ced39c4
--- /dev/null
+++ b/youtube_dl/extractor/screencast.py
@@ -0,0 +1,48 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+import re
+
+from .common import InfoExtractor
+from ..utils import (
+    compat_parse_qs,
+    compat_urllib_request,
+)
+
+
+class ScreencastIE(InfoExtractor):
+    _VALID_URL = r'https?://www\.screencast\.com/t/(?P<id>[a-zA-Z0-9]+)'
+    _TEST = {
+        'url': 'http://www.screencast.com/t/3ZEjQXlT',
+        'md5': '917df1c13798a3e96211dd1561fded83',
+        'info_dict': {
+            'id': '3ZEjQXlT',
+            'ext': 'm4v',
+            'title': 'Color Measurement with Ocean Optics Spectrometers',
+            'description': 'md5:240369cde69d8bed61349a199c5fb153',
+            'thumbnail': 're:^https?://.*\.jpg$'
+        }
+    }
+
+    def _real_extract(self, url):
+        mobj = re.match(self._VALID_URL, url)
+        video_id = mobj.group('id')
+        webpage = self._download_webpage(url, video_id)
+
+        flash_vars_s = self._html_search_regex(
+            r'<param name="flashVars" value="([^"]+)"', webpage, 'flash vars')
+        flash_vars = compat_parse_qs(flash_vars_s)
+
+        thumbnail = flash_vars.get('thumb', [None])[0]
+        video_url_raw = compat_urllib_request.quote(flash_vars['content'][0])
+        video_url = video_url_raw.replace('http%3A', 'http:')
+        title = self._og_search_title(webpage)
+        description = self._og_search_description(webpage)
+
+        return {
+            'id': video_id,
+            'url': video_url,
+            'title': title,
+            'description': description,
+            'thumbnail': thumbnail,
+        }