mirror of https://github.com/yt-dlp/yt-dlp.git
[ted] Fix hls audio/video-only formats
This commit is contained in:
parent
6728187ac0
commit
0f0b5736da
|
@ -198,6 +198,9 @@ class TEDIE(InfoExtractor):
|
||||||
hls_formats = self._extract_m3u8_formats(
|
hls_formats = self._extract_m3u8_formats(
|
||||||
resources.get('stream'), video_name, 'mp4', m3u8_id=format_id)
|
resources.get('stream'), video_name, 'mp4', m3u8_id=format_id)
|
||||||
for f in hls_formats:
|
for f in hls_formats:
|
||||||
|
if not f.get('height'):
|
||||||
|
f['vcodec'] = 'none'
|
||||||
|
else:
|
||||||
f['acodec'] = 'none'
|
f['acodec'] = 'none'
|
||||||
formats.extend(hls_formats)
|
formats.extend(hls_formats)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue