volisky
Results
1
comments of
volisky
我是将funasr_wss_client.py 中 elif wav_path.endswith(".wav"): import wave with wave.open(wav_path, "rb") as wav_file: params = wav_file.getparams() sample_rate = wav_file.getframerate() frames = wav_file.readframes(wav_file.getnframes()) audio_bytes = bytes(frames) 替换为了 elif wav_path.endswith(".wav"): import soundfile as sf...