What I tried:
I try to compare(fingerprint) two audio songs(with out background music) by using musicg API.
The code is like below:
file1.wav is master file and file2.wav (vice-versa) is recorded file, both are sung by same person(without background music) and same song.
FingerprintSimilarity siml = new Wave("file1.wav")
.getFingerprintSimilarity(new Wave("file2.wav"));
System.out.println(siml.getScore());
But it's not comparing the two files properly and getting very low score(0.099384) even though two songs are sung by same person and same way.
How can I solve this Issue?
Any other java API will help to do the same?