mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
34 lines
711 B
JavaScript
34 lines
711 B
JavaScript
import path from "node:path"
|
|
import SegmentedAudioMPDJob from "@shared-classes/SegmentedAudioMPDJob"
|
|
|
|
export default async ({ filePath, workPath, onProgress }) => {
|
|
return new Promise(async (resolve, reject) => {
|
|
const outputDir = path.resolve(workPath, "a-dash")
|
|
|
|
const job = new SegmentedAudioMPDJob({
|
|
input: filePath,
|
|
outputDir: outputDir,
|
|
|
|
// set to default as raw flac
|
|
audioCodec: "flac",
|
|
audioBitrate: "default",
|
|
audioSampleRate: "default",
|
|
})
|
|
|
|
job.on("end", (data) => {
|
|
resolve(data)
|
|
})
|
|
|
|
job.on("progress", (progress) => {
|
|
if (typeof onProgress === "function") {
|
|
onProgress({
|
|
percent: progress,
|
|
state: "transmuxing",
|
|
})
|
|
}
|
|
})
|
|
|
|
job.run()
|
|
})
|
|
}
|