关于soundfile写音频是报错raise RuntimeError(prefix + _ffi.string(err_str).decode(‘utf-8‘, ‘replace‘))

这里写自定义目录标题

目前在作一个项目,因为版本问题没办法使用torchaudio的一些功能,所以使用别的库来实现,其中测试效果是使用soundfile.write报错raise RuntimeError(prefix + _ffi.string(err_str).decode(‘utf-8’, ‘replace’)),这里其实是个小坑。使用torchaudio读音频,假设都是单通道,torchaudio读入tensor为二维数据,转化为numpy后也是二维ndarray,要先进行np.squeeze后才能使用。

你可能感兴趣的:(python,numpy,深度学习)