mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[24video] Fix description extraction
This commit is contained in:
parent
a001296703
commit
f6e588afc0
@ -47,7 +47,8 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
title = self._og_search_title(webpage)
|
title = self._og_search_title(webpage)
|
||||||
description = self._html_search_regex(
|
description = self._html_search_regex(
|
||||||
r'<span itemprop="description">([^<]+)</span>', webpage, 'description', fatal=False)
|
r'<(p|span)[^>]+itemprop="description"[^>]*>(?P<description>[^<]+)</\1>',
|
||||||
|
webpage, 'description', fatal=False, group='description')
|
||||||
thumbnail = self._og_search_thumbnail(webpage)
|
thumbnail = self._og_search_thumbnail(webpage)
|
||||||
duration = int_or_none(self._og_search_property(
|
duration = int_or_none(self._og_search_property(
|
||||||
'duration', webpage, 'duration', fatal=False))
|
'duration', webpage, 'duration', fatal=False))
|
||||||
|
Loading…
Reference in New Issue
Block a user