diff --git a/enjoy/src/main/ffmpeg.ts b/enjoy/src/main/ffmpeg.ts index 8d9526b5..73ddef82 100644 --- a/enjoy/src/main/ffmpeg.ts +++ b/enjoy/src/main/ffmpeg.ts @@ -305,7 +305,11 @@ export default class FfmpegWrapper { "-crf", "30", "-preset", - "superfast" + "superfast", + "-c:a", + "aac", + "-b:a", + "128k" ) .on("start", (commandLine) => { logger.info("Spawned FFmpeg with command: " + commandLine);