mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[peertube] Recognize audio-only formats (closes #27295)
This commit is contained in:
parent
e147619669
commit
51579d87e4
1 changed files with 2 additions and 0 deletions
|
@ -541,6 +541,8 @@ class PeerTubeIE(InfoExtractor):
|
||||||
'format_id': format_id,
|
'format_id': format_id,
|
||||||
'filesize': file_size,
|
'filesize': file_size,
|
||||||
})
|
})
|
||||||
|
if format_id == '0p':
|
||||||
|
f['vcodec'] = 'none'
|
||||||
formats.append(f)
|
formats.append(f)
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue