I am looking for voice recognition in PHP.
I have a lot of wav files (10-15 seconds), and I would like Voice Recognition to recognize 1 or 2 words from each wav file, and then mark it in a database or csv.
All files have the same voice and accent (same person)
Pseudo-code example:
$voice = new play('file.wav'); $result = $voice->recognise("Good Morning"); if ($result) { echo "Matched Good Morning"; //flag to database or csv } else { echo "No match found"; }
What PHP voice recognition library can do this?
php speech-recognition voice-recognition audio
I'll-be-back
source share