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

ID:20527 / 打印

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 版本进行相应的调整。

上一篇: webUI 自动化:页面没有返回元素,如何从当前页面返回首页?
下一篇: 使用 openpyxl 库如何循环判断并修改 Excel 表格中为 None 的内容?

作者:admin @ 24资源网   2025-01-14

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。