AttributeError: module 'sounddevice' has no attribute 'write'. Did you mean: 'wait'?修改上面代码
时间: 2024-04-02 08:29:47 浏览: 107
问题解决:AttributeError: module ‘paddle.fluid’ has no attribute ‘EndStepEvent’
5星 · 资源好评率100%
AttributeError: module 'sounddevice' has no attribute 'write' 错误表示在sounddevice模块中找不到write属性。根据错误提示,你可能想使用的是wait属性。要修改上面的代码,你需要将write改为wait。以下是修改后的代码示例:
```python
import sounddevice as sd
# 修改前的代码
sd.write(data, samplerate)
# 修改后的代码
sd.wait()
```
阅读全文