ubuntu18.04 | soundfile安装报错与解决

本文介绍了在Ubuntu系统中遇到soundfile库安装错误时,如何通过先安装缺失的依赖包libsndfile1来解决。步骤包括sudo apt-get install libsndfile1,然后使用pip install soundfile。还提供了soundfile的基本使用示例,如读写音频文件。
摘要由CSDN通过智能技术生成

①问题描述

在终端使用pip install soundfile安装soundfile时报错。

②问题解决

python处理音频文件经常要使用soundfile库。ubuntu系统在pip安装soundfile库时报错,是因为缺乏依赖包libsndfile1,所以要先安装依赖包,然后再安装soundfile。命令如下:

  • step1:终端输入sudo apt-get install libsndfile1
  • step2:终端输入pip install soundfile

soundfile学习

点此学习soundfile的使用。

soundfile常用于音频文件读写:

import soundfile as sf

data, samplerate = sf.read('existing_file.wav')
sf.write('new_file.flac', data, samplerate)

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值