Musicg fingerprint for audio input

In musicg, I can compare the fingerprints of Wave files with the following code:

double score = new FingerprintsSimilarity( new Wave("voice1.wav").getFingerprint(), new Wave("voice2.wav").getFingerprint() ).getSimilarity(); 

Instead of saving sound and comparing, can I directly feed the MIC input to get a fingerprint look?

For example:

 double score = new FingerprintsSimilarity( AudioFromMIC(), new Wave("voice2.wav").getFingerprint() ).getSimilarity(); 

Edit: In Wave.java, the initWaveWithInputStream () function can I send MIC input as an input stream? Is it possible?

+7
android audio-fingerprinting
source share

No one has answered this question yet.

See related questions:

38
Saving audio input to the Android Stock speech recognition system
31
Android Audio Recording
4
Understanding the muscle sensor audio file
2
How to compare two-wave audio files and generate an account?
one
how to extract part of audio in android
one
Online comparison of two audio files
one
Android: No such file or directory found error?
one
Checking .wav Files for Similarities
0
UBS cable disrupts microphone input from audio jack
0
Comparing an audio file with real-time input using a microphone using musicg in android does not work

All Articles