psambit9791 / jdsp

A Java Library for Digital Signal Processing
https://jdsp.dev
MIT License
240 stars 45 forks source link

WAV File IO Wiki error #15

Closed enricoDec closed 3 years ago

enricoDec commented 3 years ago

https://github.com/psambit9791/jDSP/wiki/WAV-File-IO

Wav objWrite = new Wav();
int channels = 2;
objWrite.putData(signal, channels, "int", outputFileName); 

The second parameter of putData() should be the sampling rate I think.

objWrite.putData(signal, sampleRate, "int", outputFileName); 
psambit9791 commented 3 years ago

Thanks for pointing that out. Has been fixed now.