Hi Anuj,
2017-03-26 8:00 GMT+02:00 Anuj Deshpande :
> /* Set the synthesizer settings, if necessary */
> printf("Creating new synth .. \r\n");
> synth = new_fluid_synth(settings);
> printf("Creating new audio driver.. \r\n");
> fluid_settings_setstr(settings, "audio.driver", "coreaudio"
> ...but I am not able to see an instance of fluidsynth being created in my
processes.
Why should you see it? You are not executing the fluidsynth executable. You
are executing your own program which uses fluidsynth's API, i.e.
libfluidsynth.dylib gets linked to build/exec during compilation. When
Hi
I am trying to create a new instance of fluidsynth from a C program -
#include "../fluidsynth-1.1.6/include/fluidsynth.h"
void fs_init(){
printf("### Begin fs_init ### \r\n");
fluid_settings_t* settings;
fluid_synth_t* synth;
fluid_audio_driver_t* adriver;
settings = new_fluid_set