0

我正在尝试加载一个音频文件(通过PySoundFile)并让它返回一个bytes. 但是 currentdtype['float32', 'float64', 'int16', 'int32']

我需要它bytes来使用pocketsphinxdecoder.process_raw

4

1 回答 1

0
audio_data = self.SOUND_FILE.read(sample_frames, dtype='int16')
audio_bytes = audio_data.tobytes()
于 2019-10-17T19:06:01.197 回答