当前位置:   article > 正文

【PYTHON】soundfile.read / torchaudio.load / librosa.load

soundfile.read

目录

Soundfile.read

Torchaudio.load

Librosa.load


在读取音频时有几种方法,而每一种所读出来的格式都不一样

Soundfile.read

最简单输入参数也最少的方式

  1. import soundfile as sf
  2. file = './my_audio/cat.wav'
  3. y, sr = sf.read(file)
  4. print('If use soundfile, shape of y = ',y.shape)
  5. # 输出:
  6. If use soundfile.read, shape of y = (187662, 2)

Torchaudio.load

读取完音频则为Tensor的型态

filepath (str):音频路径。

frame_offset (int)(默认是0):在此之后开始读取,以帧为单位。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/889342
推荐阅读
相关标签
  

闽ICP备14008679号