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