0

I'm using pyfluidSynth on MacOS. I have FluidSynth working with sound using the shell, but in my python program there is no sound (and no error). Any special configuration needed in FluidSynth configuration or in my MacOS? Thanks!

david
  • 61
  • 1
  • 4

1 Answers1

0

I just setup pyFluidSynth on MacOS - had the same issue.

I fixed it by providing a sound driver in the Synth.start method:

fs = fluidsynth.Synth()
fs.start(driver='coreaudio')
Jools
  • 152
  • 2
  • 11