Python librosa库报错:AttributeError: module 'librosa' has no attribute 'output',如何解

2024-11-07 12:39:40 编辑:抖狐科技 来源:摘自互联网

python librosa库报错:attributeerror: module 'librosa' has no attribute 'output',如何解决?

python 报错:attributeerror: module 'librosa' has no attribute 'output'

问题描述:

在使用 librosa 库时,运行以下代码时出现错误:

import librosa
y, sr = librosa.load("d:/output/1.wav")
b = librosa.effects.pitch_shift(y, sr, n_steps=-10)
librosa.output.write_wav("gg_pitch_shift.wav",b,sr)

登录后复制

报错信息为 "attributeerror: module 'librosa' has no attribute 'output'。"

立即学习“Python免费学习笔记(深入)”;

解决方案:

提示中提到,导致此错误的原因可能是 librosa 库版本问题。建议检查以下情况:

  • 确保您使用的是最新版本的 librosa 库。
  • 对于旧版本的 librosa,可能需要使用另一种方法来写入 wav 文件,例如:

    librosa.core.rir.output_wav("gg_pitch_shift.wav",b,sr)

    登录后复制

    请根据您的 librosa 版本进行相应的调整。

以上就是Python librosa库报错:AttributeError: module 'librosa' has no attribute 'output',如何解决?的详细内容,更多请关注抖狐科技其它相关文章!

本站文章均为抖狐网站建设摘自权威资料,书籍,或网络原创文章,如有版权纠纷或者违规问题,请即刻联系我们删除,我们欢迎您分享,引用和转载,我们谢绝直接复制和抄袭!感谢...
我们猜你喜欢