gpt4 book ai didi

python - Python上麦克风的WAV文件

转载 作者:行者123 更新时间:2023-12-03 00:13:35 29 4
gpt4 key购买 nike

我的项目是使用麦克风进行说话人识别。

我正在使用speeh_recognition库提取我的麦克风音频,但是该对象的类是“speech_recognition.AudioData”,而且我不知道如何将其转换为wav文件(例如,使用librosa来获取音频功能并可能认出说话者)。

有人可以帮我吗?我学习Python已有很长时间了,因此可能还会有更简单的方法来使用麦克风进行说话人识别:)
非常感谢 !

最佳答案

将音频写入WAV文件:

with open("microphone-results.wav", "wb") as f:
f.write(audio.get_wav_data())

引用 doc:

Returns a byte string representing the contents of a WAV file containing the audio represented by the AudioData instance.

关于python - Python上麦克风的WAV文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46738569/

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