我正在尝试加载一个音频文件(通过PySoundFile)并让它返回一个bytes. 但是 currentdtype是['float32', 'float64', 'int16', 'int32']我需要它bytes来使用pocketsphinx:decoder.process_raw
1 回答
九州编程
TA贡献1785条经验 获得超4个赞
audio_data = self.SOUND_FILE.read(sample_frames, dtype='int16') audio_bytes = audio_data.tobytes()
添加回答
举报
0/150
提交
取消