Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MacOS 上使用 pyfluidSynth。我让 FluidSynth 使用 shell 处理声音,但在我的 python 程序中没有声音(也没有错误)。FluidSynth 配置或我的 MacOS 中需要什么特殊配置?谢谢!
我刚刚在 MacOS 上设置了 pyFluidSynth - 遇到了同样的问题。
我通过在 Synth.start 方法中提供声音驱动程序来修复它:
fs = fluidsynth.Synth() fs.start(driver='coreaudio')