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

Authored by: Lesmiscore
pull/3332/head
Lesmiscore (Naoya Ozaki) 2 years ago committed by GitHub
parent da1ffde15d
commit 06b1628d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -183,6 +183,14 @@ class TwitCastingIE(InfoExtractor):
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',

Loading…
Cancel
Save