switch audio HLS to m4a

Changelog: changed
This commit is contained in:
Kai 2025-05-29 10:24:23 -05:00
commit ee28604c11
No known key found for this signature in database

View file

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