Thanks Tom, some very enlightening comments -- especially about the lack of
errors.I had already noted that fluidsynth was not good at reporting errors.
I have now implemented fluid_synth_set_reverb() and of course it now works
beautifully and Iget the currently set values from value =
fluid_
https://github.com/VolcanoMobile/fluidsynth-android
this is my fork of Fluidsynth
basically, I removed the glib dep and all the drivers, so it's up to you to
call fluid_synth_write_s16 to fill a buffer.
it can be a OpenSL buffer, AAudio, or even an AudioTrack
you can build it by calling ndk-buil
If OpenSLES support were basically in place, I could contribute by testing
it on Android, and with other Android-related stuff.
I have a lot of experience with C/C++, Java, JNI, Windows, and Android, but
unfortunately I'm not very good at setting up builds in a Unix environment.
I understand t
On Sun, Jan 7, 2018 at 11:17 AM, Tom M. wrote:
>
> P.S.: fluidsynth.org/api/ is currently down, give it 20 hours to recover.
>
>
>
There were no files in the generated api directory on the website. I ran
the same script the cron job runs and so it should be back up now. Not
sure why it wasn't t
> I can only guess where to begin as the documented reverb API is limited to
> turning reverb on or off (which I have done and it is working)
Reverb is a feature of the synth, you should therefore have a look at the
numerous functions the synth provides:
http://www.fluidsynth.org/api/synth_8h.h
Supporting OpenSLES would definitely be a nice feature and I already asked
Atsushi to draft another PR at github, but no reaction so far:
https://sourceforge.net/p/fluidsynth/code-git/merge-requests/3/
Overall it looks quite well, however I have no means to actually test this, so
any effort I p
Hi, this is my first attempt to post to the fluidsynth list :-)
I am attempting to use fluidsynth in an Android app I am developing. If my
understanding is correct, there is currently no direct support for Android. I
came across this fork https://github.com/atsushieno/fluidsynth which seems to
Hi All
I can only guess where to begin as the documented reverb API is limited to
turning reverbon or off (which I have done and it is working)
I have assumed that the doubles: roomsize, damp, width and level are settings
and thuscan be set by:fluid_settings_setnum(settings, "name", value);
I hav