Voice Recognition in PHP?

2019-02-06 19:27发布

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 recognise 1 or 2 words from each wav file and then flag it to database or csv.

All the files have the same voice and accent (same person lol)

Example pseudocode:

$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";
 }

Which PHP Voice Recognition library can do this?

2条回答
该账号已被封号
2楼-- · 2019-02-06 19:59

PHP doesn't have this functionality built in but there are APIs available for this. SpeechAPI is one of them. Sphinx is another.

查看更多
我想做一个坏孩纸
3楼-- · 2019-02-06 20:01

Similar questions have been asked before. You might want to see https://stackoverflow.com/a/6351055/90236 to start your search for a speech engine.

There have also been a few questions regarding uses Php for speech recognition in web pages. Doesn't seem like your doing that, but it is Php - https://stackoverflow.com/a/8717077/90236

查看更多
登录 后发表回答