1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-20 12:17:20 +02:00

[twitcasting] Don't return multi_video for archive with single hls manifest (#3319)

Authored by: Lesmiscore
This commit is contained in:
Lesmiscore (Naoya Ozaki) 2022-04-07 13:42:01 +09:00 committed by GitHub
parent da1ffde15d
commit 06b1628d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,6 +183,14 @@ def find_dmu(x):
infodict = {
'formats': formats
}
elif len(m3u8_urls) == 1:
formats = self._extract_m3u8_formats(
m3u8_urls[0], video_id, 'mp4', headers=self._M3U8_HEADERS)
self._sort_formats(formats)
infodict = {
# No problem here since there's only one manifest
'formats': formats,
}
else:
infodict = {
'_type': 'multi_video',