ffmpeg path hotfix

This commit is contained in:
NoobishSVK
2024-03-24 21:19:45 +01:00
parent 07d762c05d
commit 1352db389c
+1 -1
View File
@@ -16,7 +16,7 @@ function parseAudioDevice(options, callback) {
options = null;
}
options = options || {};
const ffmpegPath = ffmpeg.replace(/\\/g, '\\\\');
const ffmpegPath = "\"" + ffmpeg.replace(/\\/g, '\\\\') + "\"";
const callbackExists = typeof callback === 'function';
let inputDevice, prefix, audioSeparator, alternativeName, deviceParams;