mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 23:25:06 +00:00
[screencast] Add one more format and improve title extraction
This commit is contained in:
parent
aaefb347c0
commit
c961a0e63e
1 changed files with 18 additions and 1 deletions
|
@ -43,6 +43,16 @@ class ScreencastIE(InfoExtractor):
|
||||||
'description': 'Provides a demo of a CommunityViz export to Google Earth, one of the 3D viewing options.',
|
'description': 'Provides a demo of a CommunityViz export to Google Earth, one of the 3D viewing options.',
|
||||||
'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
|
'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(
|
flash_vars_s = self._html_search_regex(
|
||||||
r'<param name="flashVars" value="([^"]+)"', webpage, 'flash vars',
|
r'<param name="flashVars" value="([^"]+)"', webpage, 'flash vars',
|
||||||
default=None)
|
default=None)
|
||||||
|
if not flash_vars_s:
|
||||||
|
flash_vars_s = self._html_search_regex(
|
||||||
|
r'<param name="initParams" value="([^"]+)"', webpage, 'flash vars',
|
||||||
|
default=None)
|
||||||
|
if flash_vars_s:
|
||||||
|
flash_vars_s = flash_vars_s.replace(',', '&')
|
||||||
if flash_vars_s:
|
if flash_vars_s:
|
||||||
flash_vars = compat_parse_qs(flash_vars_s)
|
flash_vars = compat_parse_qs(flash_vars_s)
|
||||||
video_url_raw = compat_urllib_request.quote(
|
video_url_raw = compat_urllib_request.quote(
|
||||||
|
@ -79,7 +95,8 @@ def _real_extract(self, url):
|
||||||
title = self._og_search_title(webpage, default=None)
|
title = self._og_search_title(webpage, default=None)
|
||||||
if title is None:
|
if title is None:
|
||||||
title = self._html_search_regex(
|
title = self._html_search_regex(
|
||||||
r'class="tabSeperator">></span><span class="tabText">(.*?)<',
|
[r'<b>Title:</b> ([^<]*)</div>',
|
||||||
|
r'class="tabSeperator">></span><span class="tabText">(.*?)<'],
|
||||||
webpage, 'title')
|
webpage, 'title')
|
||||||
thumbnail = self._og_search_thumbnail(webpage)
|
thumbnail = self._og_search_thumbnail(webpage)
|
||||||
description = self._og_search_description(webpage, default=None)
|
description = self._og_search_description(webpage, default=None)
|
||||||
|
|
Loading…
Reference in a new issue