audio-channels int 1 1 128 By default, the synthesizer outputs a single stereo signal. Using this option, the synthesizer can output multichannel audio. Sets the number of stereo channel pairs. So 1 is actually 2 channels (a stereo pair). audio-groups int 1 1 128 Normally the same value as synth.audio-channels. LADSPA effects subsystem can use this value though, in which case it may differ. chorus.active bool 1 (TRUE) When set to 1 (TRUE) the chorus effects module is activated. Otherwise, no chorus will be added to the output signal. Note that the amount of signal sent to the chorus module depends on the "chorus send" generator defined in the SoundFont. cpu-cores int 1 1 256 (Experimental) Sets the number of synthesis CPU cores. If set to a value greater than 1, then additional synthesis threads will be created to take advantage of a multi CPU or CPU core system. This has the affect of utilizing more of the total CPU for voices or decreasing render times when synthesizing audio to a file. device-id int 0 0 126 Device identifier used for SYSEX commands, such as MIDI Tuning Standard commands. Only those SYSEX commands destined for this ID or to all devices will be acted upon. ladspa.active bool 0 (FALSE) When set to "yes" the LADSPA subsystem will be enabled. This subsystem allows to load and interconnect LADSPA plug-ins. The output of the synthesizer is processed by the LADSPA subsystem. Note that the synthesizer has to be compiled with LADSPA support. More information about the LADSPA subsystem later. midi-channels int 16 16 256 This setting defines the number of MIDI channels of the synthesizer. The MIDI standard defines 16 channels, so MIDI hardware is limited to this number. Internally FluidSynth can use more channels which can be mapped to different MIDI sources. midi-bank-select str gs gm, gs, xg, mma This setting defines how the synthesizer interprets Bank Select messages.
  • gm: ignores CC0 and CC32 messages.
  • gs: (default) CC0 becomes the bank number, CC32 is ignored.
  • xg: CC32 becomes the bank number, CC0 is ignored.
  • mma: bank is calculated as CC0*128+CC32.
min-note-length int 10 0 65535 Sets the minimum note duration in milliseconds. This ensures that really short duration note events, such as percussion notes, have a better chance of sounding as intended. Set to 0 to disable this feature. parallel-render bool 1 (TRUE) This is the low-latency setting. If on, you're allowed to call fluid_synth_write_s16, fluid_synth_write_float, fluid_synth_nwrite_float or fluid_synth_process in parallel with the rest of the calls, and it won't be blocked by time intensive calls to the synth. Turn it off if throughput is more important than latency, e g in rendering-to-file scenarios where underruns is not an issue.

Deprecated:
As of 1.1.7 this option is deprecated. This option enforces thread safety for rvoice_mixer, which causes rvoice_events to be queued internally. The current implementation relies on the fact that this option is set to TRUE to correctly render any amount of requested audio. Also calling fluid_synth_write_* in parallel is not considered to be a use-case. It would cause undefined audio output, as it would be unpredictable for the user which rvoice_events specifically would be dispatched to which fluid_synth_write_* call.
polyphony int 256 1 65535 The polyphony defines how many voices can be played in parallel. A note event produces one or more voices. Its good to set this to a value which the system can handle and will thus limit FluidSynth's CPU usage. When FluidSynth runs out of voices it will begin terminating lower priority voices for new note events. reverb.active bool 1 (TRUE) When set to 1 (TRUE) the reverb effects module is activated. Otherwise, no reverb will be added to the output signal. Note that the amount of signal sent to the reverb module depends on the "reverb send" generator defined in the SoundFont. sample-rate num 44100.0 22050.0 96000.0 The sample rate of the audio generated by the synthesizer. threadsafe-api bool 1 (TRUE) Controls whether the synth's public API is protected by a mutex or not. Default is on, turn it off for slightly better performance if you know you're only accessing the synth from one thread only, this could be the case in many embedded use cases for example. Note that libfluidsynth can use many threads by itself (shell is one, midi driver is one, midi player is one etc) so you should usually leave it on. Also see synth.parallel-render. verbose bool 0 (FALSE) When set to 1 (TRUE) the synthesizer will print out information about the received MIDI events to the stdout. This can be helpful for debugging. This setting cannot be changed after the synthesizer has started. volenv str emu compliant, emu Specifies the kind of volume envelope processing. This esp. influences the way fluidsynth responses to noteon velocity. The default setting 'emu' causes the envelope to be highly dynamic (i.e. compatible with the EMU10K1). Alternatively this may be set to 'compliant' for a less dynamic envelope, as it was done before fluidsynth 1.0.9. Note that this setting can only be changed until the first synth has been created. Changing it afterwards will have no effect for the rest of fluidsynths lifetime. effects-channels int 2 2 2 Currently unused. gain num 0.2 0.0 10.0 The gain is applied to the final or master output of the synthesizer. It is set to a low value by default to avoid the saturation of the output when many notes are played.
device str default ALSA device string, such as: "hw:0", "plughw:1", etc. Selects the ALSA audio device to use. device str default Selects the CoreAudio device to use. device str default Selects the Dart (OS/2 driver) device to use. device str default Selects the DirectSound (Windows) device to use. endian str 'auto' if libsndfile support is built in,
'cpu' otherwise.
auto, big, cpu, little ('cpu' is all that is supported if libsndfile support is not built in) Defines the byte order when using the 'file' driver or file renderer to store audio to a file. 'auto' uses the default for the given file type, 'cpu' uses the CPU byte order, 'big' uses big endian byte order and 'little' uses little endian byte order.
format str s16 double, float, s16, s24, s32, s8, u8 ('s16' is all that is supported if libsndfile support not built in) Defines the audio format when rendering audio to a file.
  • 'double' is 64 bit floating point,
  • 'float' is 32 bit floating point,
  • 's16' is 16 bit signed PCM,
  • 's24' is 24 bit signed PCM,
  • 's32' is 32 bit signed PCM,
  • 's8' is 8 bit signed PCM and
  • 'u8' is 8 bit unsigned PCM.
name str 'fluidsynth.wav' if libsndfile support is built in,
'fluidsynth.raw' otherwise.
Specifies the file name to store the audio to, when rendering audio to a file.
type str 'auto' if libsndfile support is built in,
'raw' otherwise.
aiff, au, auto, avr, caf, flac, htk, iff, mat, oga, paf, pvf, raw, sd2, sds, sf, voc, w64, wav, xi (actual list of types may vary and depends on the libsndfile library used, 'raw' is the only type available if no libsndfile support is built in). Sets the file type of the file which the audio will be stored to. 'auto' attempts to determine the file type from the audio.file.name file extension and falls back to 'wav' if the extension doesn't match any types.
autoconnect bool 0 (FALSE) If 1 (TRUE), then FluidSynth output is automatically connected to jack system audio output. id str fluidsynth ID used when creating Jack client connection. multi bool 0 (FALSE) If 1 (TRUE), then multi-channel Jack output will be enabled if synth.audio-channels is greater than 1. server str Jack server to connect to. Defaults to an empty string, which uses default Jack server. device str /dev/dsp Device to use for OSS audio output. device str PortAudio Default Device to use for PortAudio driver output. Note that 'PortAudio Default' is a special value which outputs to the default PortAudio device. device str default Device to use for PulseAudio driver output. server str default Server to use for PulseAudio driver output. driver str alsa_seq (Linux),
winmidi (Windows),
jack (Mac OS X)
alsa_raw, alsa_seq, coremidi, jack, midishare, oss, winmidi The MIDI system to be used.
realtime-prio int 50 0 99 Sets the realtime scheduling priority of the MIDI thread (0 disables high priority scheduling). Linux is the only platform which currently makes use of different priority levels. Drivers which use this option: alsa_raw, alsa_seq, oss portname str Used by coremidi and alsa_seq drivers for the portnames registered with the MIDI subsystem.
reset-synth bool 1 (TRUE) If true, reset the synth before starting a new MIDI song, so the state of a previous song can't affect the new song. Turn it off for seamless looping of a song. timing-source str sample sample, system Determines the timing source of the player sequencer. 'sample' uses the sample clock (how much audio has been output) to sequence events, in which case audio is synchronized with MIDI events. 'system' uses the system clock, audio and MIDI are not synchronized exactly. prompt str "" In dump mode we set the prompt to "". The ui cannot easily handle lines, which don't end with cr. Changing the prompt cannot be done through a command, because the current shell does not handle empty arguments. port num 9800 1 65535 The shell can be used in a client/server mode. This setting controls what TCP/IP port the server uses.