mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[krasview] Fix extraction (Closes #5228)
This commit is contained in:
parent
ed9a25dd61
commit
2c2c06e359
1 changed files with 4 additions and 2 deletions
|
@ -40,8 +40,10 @@ def _real_extract(self, url):
|
||||||
description = self._og_search_description(webpage, default=None)
|
description = self._og_search_description(webpage, default=None)
|
||||||
thumbnail = flashvars.get('image') or self._og_search_thumbnail(webpage)
|
thumbnail = flashvars.get('image') or self._og_search_thumbnail(webpage)
|
||||||
duration = int_or_none(flashvars.get('duration'))
|
duration = int_or_none(flashvars.get('duration'))
|
||||||
width = int_or_none(self._og_search_property('video:width', webpage, 'video width'))
|
width = int_or_none(self._og_search_property(
|
||||||
height = int_or_none(self._og_search_property('video:height', webpage, 'video height'))
|
'video:width', webpage, 'video width', default=None))
|
||||||
|
height = int_or_none(self._og_search_property(
|
||||||
|
'video:height', webpage, 'video height', default=None))
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
|
|
Loading…
Reference in a new issue