[lecture2go] Make optional fields non-fatal

master
Yen Chi Hsuan 9 years ago
parent e9c6deffee
commit 40101dc311

@ -45,7 +45,8 @@ class Lecture2GoIE(InfoExtractor):
self._sort_formats(formats)
creator = self._html_search_regex(r'<div[^>]+id="description">([^<]+)</div>', webpage, 'creator')
creator = self._html_search_regex(
r'<div[^>]+id="description">([^<]+)</div>', webpage, 'creator', fatal=False)
duration = parse_duration(self._html_search_regex(
r'Duration:\s*</em>\s*<em[^>]*>([^<]+)</em>', webpage, 'duration', fatal=False))
view_count = int_or_none(self._html_search_regex(

Loading…
Cancel
Save