Split speech audio file on words in python

前端 未结 4 1527
无人及你
无人及你 2020-12-23 10:16

I feel like this is a fairly common problem but I haven\'t yet found a suitable answer. I have many audio files of human speech that I would like to break on words, which ca

4条回答
  •  离开以前
    2020-12-23 10:36

    You could look at Audiolab It provides a decent API to convert the voice samples into numpy arrays. The Audiolab module uses the libsndfile C++ library to do the heavy lifting.

    You can then parse the arrays to find the lower values to find the pauses.

提交回复
热议问题