switch audio hls to be an mp4 file

Changelog: changed
This commit is contained in:
Kai 2025-05-22 13:44:50 -05:00
commit 1d1728b92b
No known key found for this signature in database

View file

@ -1163,7 +1163,7 @@ class VideoDownload {
else if (container.contains("audio/webm")) else if (container.contains("audio/webm"))
return "webm"; return "webm";
else if (container == "application/vnd.apple.mpegurl") else if (container == "application/vnd.apple.mpegurl")
return "mp4a"; return "mp4";
else else
return "audio";// throw IllegalStateException("Unknown container: " + container) return "audio";// throw IllegalStateException("Unknown container: " + container)
} }