标签: python-3.x casting floating-point int wav
目前,我正在使用soundfile来从wav文件中读取音频数据,如下所示:
soundfile
import soundfile raw_data, sample_rate = soundfile.read(filename)
虽然我知道您可以选择dtype=int16,但我想知道如何将float64值转换为int16值(显然,由于四舍五入的缘故,准确性会降低) )。
dtype=int16