gpt4 book ai didi

python - 将声音转换为python中的音素列表

转载 作者:太空狗 更新时间:2023-10-29 17:59:24 29 4
gpt4 key购买 nike

如何将任何声音信号转换为列表音素?

即从数字信号到录音所依据的音素列表的实际方法和/或代码。
例如:

lPhonemes = audio_to_phonemes(aSignal)

例如

from scipy.io.wavfile import read
iSampleRate, aSignal = read(sRecordingDir)

aSignal = #numpy array for the recorded word 'hear'
lPhonemes = ['HH', 'IY1', 'R']

我需要函数 audio_to_phonemes

不是所有的声音都是语言词,所以我不能只使用 something that uses the google API例如。

编辑
我不想要音频到单词,我想要音频到音素。大多数图书馆似乎都没有输出。您推荐的任何库都需要能够输出组成声音的音素的有序列表。它需要在 python 中。

我也很想知道声音到音素的过程是如何进行的。如果不是为了实现目的,那就是为了利益。

最佳答案

准确的音素识别并不容易实现,因为音素本身的定义相当松散。即使在良好的音频中,当今最好的系统也有大约 18% 的音素错误率(您可以查看 Alex Graves 发布的 TIMIT 上的 LSTM-RNN 结果)。

在 CMUSphinx 中,Python 中的音素识别是这样完成的:

from os import environ, path

from pocketsphinx.pocketsphinx import *
from sphinxbase.sphinxbase import *

MODELDIR = "../../../model"
DATADIR = "../../../test/data"

# Create a decoder with certain model
config = Decoder.default_config()
config.set_string('-hmm', path.join(MODELDIR, 'en-us/en-us'))
config.set_string('-allphone', path.join(MODELDIR, 'en-us/en-us-phone.lm.dmp'))
config.set_float('-lw', 2.0)
config.set_float('-beam', 1e-10)
config.set_float('-pbeam', 1e-10)

# Decode streaming data.
decoder = Decoder(config)

decoder.start_utt()
stream = open(path.join(DATADIR, 'goforward.raw'), 'rb')
while True:
buf = stream.read(1024)
if buf:
decoder.process_raw(buf, False, False)
else:
break
decoder.end_utt()

hypothesis = decoder.hyp()
print ('Phonemes: ', [seg.word for seg in decoder.seg()])

您需要从 github 查看最新的 pocketsphinx 才能运行此示例。结果应如下所示:

  ('Best phonemes: ', ['SIL', 'G', 'OW', 'F', 'AO', 'R', 'W', 'ER', 'D', 'T', 'AE', 'N', 'NG', 'IY', 'IH', 'ZH', 'ER', 'Z', 'S', 'V', 'SIL'])

另见 wiki page

关于python - 将声音转换为python中的音素列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30705028/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com