Hi!
I can't Find an example for NoiseReductionEffect. And its construction requests profile (which contains file path). However sox.Process requests file path at the sametime.
Could you share sample please?
using (Sox sox = new Sox("sox.exe"))
{
sox.Output.Type = FileType.MP3;
sox.Effects.Add(new VolumeEffect(10, GainType.Db));
sox.Effects.Add(new NoiseReductionEffect(new NoiseReductionEffect("inputfilepath",0.5f));
sox.Process("inputfilepath", "test.mp3");
}
Not working :(