I am currently working on a game that requires me to record an audio file,which is made up of a text read by a person. This particular audio file needs to be compared with another (default) audio file, for the recording of which same text as before was used (while creating the game). Now I need to know how similar these two files are. Is there a way to do that? A function that returns me a similarity index? Even if I have to integrate an external library, its fine.
I have read online about using FFT and correlation methods to do that, but is there a library that has all those techniques already built in it?