mirror of
https://github.com/DevL0rd/SkyNX
synced 2025-02-16 17:28:23 +00:00
fixed audio filter
This commit is contained in:
parent
6bd290024d
commit
6c73f9a2b9
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ function plugControllerIn() {
|
|||
function startAudioProcess() {
|
||||
ffmpegAudioProcess = spawn(
|
||||
"./lib/ffmpeg.exe",
|
||||
["-y", "-f", "dshow", "-i", 'audio=virtual-audio-capturer', "-f", "s16le", "-ar", "16000", "-ac", "2", "-c:a", "pcm_s16le", "udp://" + ip + ":2224?pkt_size=640"],
|
||||
["-y", "-f", "dshow", "-i", 'audio=virtual-audio-capturer', "-af", "equalizer=f=100:t=h:width=10:g=-64", "-f", "s16le", "-ar", "16000", "-ac", "2", "-c:a", "pcm_s16le", "udp://" + ip + ":2224?pkt_size=640"],
|
||||
{ detached: false }
|
||||
);
|
||||
ffmpegAudioProcess.stdout.on("data", data => {
|
||||
|
|
Loading…
Add table
Reference in a new issue