mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-23 00:54:31 +01:00
[xtube] Fix formats extraction (closes #24348)
This commit is contained in:
parent
4cbce88f8b
commit
4568a11802
@ -98,7 +98,7 @@ class XTubeIE(InfoExtractor):
|
|||||||
title = config.get('title')
|
title = config.get('title')
|
||||||
thumbnail = config.get('poster')
|
thumbnail = config.get('poster')
|
||||||
duration = int_or_none(config.get('duration'))
|
duration = int_or_none(config.get('duration'))
|
||||||
sources = config.get('sources')
|
sources = config.get('sources') or config.get('format')
|
||||||
|
|
||||||
if isinstance(sources, dict):
|
if isinstance(sources, dict):
|
||||||
sources = self._parse_json(self._search_regex(
|
sources = self._parse_json(self._search_regex(
|
||||||
|
Loading…
Reference in New Issue
Block a user