mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:43:20 +00:00
[xtube] Fix formats extraction (closes #24348)
This commit is contained in:
parent
4cbce88f8b
commit
4568a11802
|
@ -98,7 +98,7 @@ def _real_extract(self, url):
|
|||
title = config.get('title')
|
||||
thumbnail = config.get('poster')
|
||||
duration = int_or_none(config.get('duration'))
|
||||
sources = config.get('sources')
|
||||
sources = config.get('sources') or config.get('format')
|
||||
|
||||
if isinstance(sources, dict):
|
||||
sources = self._parse_json(self._search_regex(
|
||||
|
|
Loading…
Reference in a new issue