Reputation: 20470
I record my voice with words "Hello World" and save it as file-1.
Then record the voice of another guy with "Hello World" and save it as file-2.
Is there any way to match these two files ?
I mean ,if the two files have the same words recorded, they should be equal.
Please tell me some open source project or papers to read.
Upvotes: 1
Views: 2101
Reputation: 6050
Try to play around Dynamic Time Warping algorithm
Here is example of using DTW algorithm in appliance to speech recognition http://www.cnel.ufl.edu/~kkale/6825Project.html
Upvotes: 2