I am writing an Android application that allows a user to record their voice through a microphone and store it in storage and associate it with specific content (e.g. Contact). Later, the user will call this voice again, and the application should compare it with the stored audio files and find the one that matches the voice.
I searched a lot and found several libraries that do this on the Internet, for example EchoPrint , which generates a fingerprint from recorded audio and sends it to the openource server and returns the result. But I need to do this offline.
Does anyone know such a library?
source
share