Fixing linux bug, added noisegate switch to the call

This commit is contained in:
Logan Cusano
2023-05-27 21:34:19 -04:00
parent a9d3c33af2
commit 69fdc63983

View File

@@ -39,7 +39,7 @@ exports.joinServer = async (req, res) => {
} }
else { else {
log.DEBUG("Starting Linux Python"); log.DEBUG("Starting Linux Python");
pythonProcess = await spawn('python3', [resolve(__dirname, "../pdab/main.py"), deviceId, channelId, clientId, NGThreshold ], { cwd: resolve(__dirname, "../pdab/") }); pythonProcess = await spawn('python3', [resolve(__dirname, "../pdab/main.py"), deviceId, channelId, clientId,'-n', NGThreshold ], { cwd: resolve(__dirname, "../pdab/") });
} }
log.VERBOSE("Python Process: ", pythonProcess); log.VERBOSE("Python Process: ", pythonProcess);