New issue 113 by aibo...@gmail.com: Audio driver not listed, fails assertion
http://code.google.com/p/mingus/issues/detail?id=113
What steps will reproduce the problem?
1. Find a FluidSynth implementation using audio driver name "dsound".
2. Try to initialize mingus.midi.fluidsynth.
I'm using a precompiled FluidSynth implementation found on:
http://fluidsynth.flyx.org/
It lists 'dsound' and 'file' as valid audio driver names.
fluidsynth.init("soundfont.sf2", "Direct Sound")
fails with:
fluidsynth: error: Couldn't find the requested audio driver Direct Sound.
Valid drivers are: dsound, file.
fluidsynth.init("soundfont.sf2", "dsound")
causes:
File "C:\Python27\lib\site-packages\mingus\midi\pyFluidSynth.py", line
217, in start
assert (driver in
['alsa', 'oss', 'jack', 'portaudio', 'sndmgr', 'coreaudio', 'Direct Sound'])
AssertionError
v mingus-0.4.2.3-py2.7