diff --git a/youtube_dl/extractor/screencast.py b/youtube_dl/extractor/screencast.py
index ba69739b2b..306869e6af 100644
--- a/youtube_dl/extractor/screencast.py
+++ b/youtube_dl/extractor/screencast.py
@@ -43,6 +43,16 @@ class ScreencastIE(InfoExtractor):
'description': 'Provides a demo of a CommunityViz export to Google Earth, one of the 3D viewing options.',
'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
}
+ }, {
+ 'url': 'http://www.screencast.com/t/X3ddTrYh',
+ 'md5': '669ee55ff9c51988b4ebc0877cc8b159',
+ 'info_dict': {
+ 'id': 'X3ddTrYh',
+ 'ext': 'wmv',
+ 'title': 'Toolkit 6 User Group Webinar (2014-03-04) - Default Judgment and First Impression',
+ 'description': 'md5:7b9f393bc92af02326a5c5889639eab0',
+ 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
+ }
},
]
@@ -59,6 +69,12 @@ def _real_extract(self, url):
flash_vars_s = self._html_search_regex(
r'>(.*?)<',
+ [r'Title: ([^<]*)',
+ r'class="tabSeperator">>(.*?)<'],
webpage, 'title')
thumbnail = self._og_search_thumbnail(webpage)
description = self._og_search_description(webpage, default=None)