Open steff1193 opened 7 years ago
correct, well spotted !!!
Hello, in the same method (extractFeatures) in the line normalizer.normalize(voiceSample, sampleRate)
shouldn't be voiceSample = normalizer.normalize(voiceSample, sampleRate)
? And the normalize
method shouldn't return a double[] audioSample
?
In Recognito.java method extractFeatures there is a line
voiceDetector.removeSilence(voiceSample, sampleRate);
. Shoud'nt it bevoiceSample = voiceDetector.removeSilence(voiceSample, sampleRate);
so that you actually use the output fromremoveSilence
going forward in the method?