In musicg I can compare fingerprints of Wave files by the following code :
double score =
new FingerprintsSimilarity(
new Wave("voice1.wav").getFingerprint(),
new Wave("voice2.wav").getFingerprint() ).getSimilarity();
Instead of saving audio and comparing, can I directly feed MIC input to get the fingerprints similarity ?
Eg :
double score =
new FingerprintsSimilarity(
AudioFromMIC(),
new Wave("voice2.wav").getFingerprint() ).getSimilarity();
Edit : In the Wave.java , function initWaveWithInputStream() can I send feed MIC input as Inputstream ? Is it possible ?