diff --git a/youtube_dl/extractor/screencast.py b/youtube_dl/extractor/screencast.py
index c694511510..32f31fdd70 100644
--- a/youtube_dl/extractor/screencast.py
+++ b/youtube_dl/extractor/screencast.py
@@ -97,7 +97,8 @@ def _real_extract(self, url):
if title is None:
title = self._html_search_regex(
[r'Title: ([^<]*)',
- r'class="tabSeperator">>(.*?)<'],
+ r'class="tabSeperator">>(.*?)<',
+ r'([^<]*)'],
webpage, 'title')
thumbnail = self._og_search_thumbnail(webpage)
description = self._og_search_description(webpage, default=None)