mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 15:00:29 +00:00
[videolectures.net] Make description optional
This commit is contained in:
parent
7e2ede9891
commit
fa154d1dbe
|
@ -36,7 +36,10 @@ class VideoLecturesNetIE(InfoExtractor):
|
|||
smil = self._download_xml(smil_url, video_id)
|
||||
|
||||
title = find_xpath_attr(smil, './/meta', 'name', 'title').attrib['content']
|
||||
description = find_xpath_attr(smil, './/meta', 'name', 'abstract').attrib['content']
|
||||
description_el = find_xpath_attr(smil, './/meta', 'name', 'abstract')
|
||||
description = (
|
||||
None if description_el is None
|
||||
else description_el.attrib['content'])
|
||||
upload_date = unified_strdate(
|
||||
find_xpath_attr(smil, './/meta', 'name', 'date').attrib['content'])
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user