How to make voice recognition check against a local database in android?

后端 未结 1 1511
慢半拍i
慢半拍i 2021-01-14 06:38

Do you remember in old cellphones you could make a speech shortcut to call a person.

I am trying to make an app in android with that function. The user records a wor

相关标签:
1条回答
  • 2021-01-14 07:08

    You need to convert both reference sounds and recorded sound to features. For that you need to split sound on frames and extract FFT or directly mel-cepstrum. You can use any MFCC library out there for that.

    After you get features, you can compare them with DTW algorithm. You can find some details here

    http://en.wikipedia.org/wiki/Dynamic_time_warping

    The DTW will return you the threshold which you can use to select the right person to call to.

    Similar quesitons is

    Simplest algorithm of measuring how similar of two short audio

    0 讨论(0)
提交回复
热议问题