mirror of
https://github.com/wukko/cobalt.git
synced 2025-06-12 13:17:45 +02:00
api/stream: add support for 8kbps option for mp3 downloads
This commit is contained in:
@ -225,6 +225,10 @@ const convertAudio = (streamInfo, res) => {
|
||||
args.push("-b:a", `${streamInfo.audioBitrate}k`)
|
||||
}
|
||||
|
||||
if (streamInfo.audioFormat === "mp3" && streamInfo.audioBitrate === "8") {
|
||||
args.push("-ar", "12000");
|
||||
}
|
||||
|
||||
if (streamInfo.audioFormat === "opus") {
|
||||
args.push("-vbr", "off")
|
||||
}
|
||||
|
Reference in New Issue
Block a user