您的位置 首页 知识分享

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

报错:attributeerror: module ‘librosa’ has no …

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

报错: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’。”

立即学习“”;

解决方案:

提示中提到,导致此错误的原因可能是 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’,如何解决?的详细内容,更多请关注php中文网其它相关文章!

本文来自网络,不代表甲倪知识立场,转载请注明出处:http://www.spjiani.cn/wp/4618.html

作者: nijia

发表评论

您的电子邮箱地址不会被公开。

联系我们

联系我们

0898-88881688

在线咨询: QQ交谈

邮箱: email@wangzhan.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部