-
请问返回的base64转成音频文件不成功~哪位大佬给看看 def postprocess(wav_base64: str, outfile: str) -> float:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Soundfile first tries to load your system library. So put your compiled libsndfile somewhere on PATH, or in LD_LIBRARY_PATH, or in your current directory. Only when it can't find a system library will soundfile try its own. |
Beta Was this translation helpful? Give feedback.
Soundfile first tries to load your system library. So put your compiled libsndfile somewhere on PATH, or in LD_LIBRARY_PATH, or in your current directory. Only when it can't find a system library will soundfile try its own.
来源:bastibe/python-soundfile#302