Detect human voice from audio file input

前端 未结 9 1921
清歌不尽
清歌不尽 2021-01-30 11:25

I am trying to implement automatic voice recording functionality, similar to the Talking Tom app. I use the following code to read input from the audio recorder and analyse the

9条回答
  •  误落风尘
    2021-01-30 11:40

    The way to process the input is to use a specialised library which removes noise.

    For example, http://audacity.sourceforge.net, does noise removal.

    So long as you have characterised the main types of noise, you should have only speech remaining.

    It would be worthwhile collecting sampling data before the capture from the user, and after the user ended the capture, as this would provide at-the-time samples of noise in the environment. This is useful if each user faces unique background noise challenges.

提交回复
热议问题