[fluid-dev] Durations in the API with FLUID_SEQ_NOTE

2012-05-26 Thread Corbin Simpson
ddenly the durations are correct again. I'm not sure why this happens, and didn't find any obvious problems with the FS code that handles NOTE. Has anybody else seen anything like this? ~ C. -- When the facts change, I change my mind. What do you do, sir? ~ Ke

[fluid-dev] synth.ladspa.active does nothing?

2012-05-26 Thread Corbin Simpson
Howdy, I noticed that the setting "synth.ladspa.active" appears unused, and the LADSPA chain is always used if LADSPA support was compiled in. Is this intentional? -- When the facts change, I change my mind. What do you do, sir? ~ Keynes Corb

[fluid-dev] API for waiting on a synth?

2012-05-14 Thread Corbin Simpson
7;s API is pretty labyrinthine. Thanks! ~ C. -- When the facts change, I change my mind. What do you do, sir? ~ Keynes Corbin Simpson ___ fluid-dev mailing list fluid-dev@nongnu.org https://lists.nongnu.org/mailman/listinfo/fluid-dev

Re: [fluid-dev] Fun dbus crash

2012-02-28 Thread Corbin Simpson
flick to tell FS to not attempt rtkit? :c ~ C. On Tue, Feb 28, 2012 at 10:10 AM, Pedro Lopez-Cabanillas wrote: > On Tuesday 28 February 2012, Corbin Simpson wrote: >> In the meantime, is there an easy way to hack around this in settings, >> or do I need to rebuild FS without dbus supp

[fluid-dev] Fun dbus crash

2012-02-28 Thread Corbin Simpson
rebuild FS without dbus support? ~ C. -- When the facts change, I change my mind. What do you do, sir? ~ Keynes Corbin Simpson ___ fluid-dev mailing list fluid-dev@nongnu.org https://lists.nongnu.org/mailman/listinfo/fluid-dev

[fluid-dev] PyFluidSynth

2010-10-12 Thread Corbin Simpson
y any blessed bindings to any language besides C/C++. ~ C. -- When the facts change, I change my mind. What do you do, sir? ~ Keynes Corbin Simpson ___ fluid-dev mailing list fluid-dev@nongnu.org http://lists.nongnu.org/mailman/listinfo/fluid-dev

Re: [fluid-dev] RPython Bindings

2010-08-18 Thread Corbin Simpson
to > about +60.0, surely there must be a fixed range? > -hart Having gone back into the API again, it looks like fluid_synth_write_float() and friends are not normalized, so you'll have to do that yourself. ~ C. -- When the facts change, I change my mind. What do y

Re: [fluid-dev] RPython Bindings

2010-08-16 Thread Corbin Simpson
On Sun, Aug 15, 2010 at 7:31 PM, Corbin Simpson wrote: > You may be interested in my Cython bindings, see > github.com/MostAwesomeDude/pyfluidsynth. While not complete, they do work. > > Sending from a mobile, pardon the brevity. ~ C. > > On Aug 15, 2010 6:17 PM, "Goat Man&

Re: [fluid-dev] RPython Bindings

2010-08-15 Thread Corbin Simpson
You may be interested in my Cython bindings, see github.com/MostAwesomeDude/pyfluidsynth. While not complete, they do work. Sending from a mobile, pardon the brevity. ~ C. On Aug 15, 2010 6:17 PM, "Goat Man" wrote: > Hello Fluid Devs! > I am working on a RPython binding that is faster than the c

Re: [fluid-dev] Windows Sound Output - directsound (dsound.h)

2009-11-28 Thread Corbin Simpson
I had to change the def of IIRC FLUID_IN_DLL or something like that, before dsound worked for me. I'll investigate later. Posting from a mobile, pardon my terseness. ~ C. On Nov 28, 2009 4:08 AM, "Nils" wrote: Hey fluidsynths, for our Denemo Windows sound-output we use fluidsynth. I compiled f

Re: [fluid-dev] More commits on the way to 1.1.1

2009-11-16 Thread Corbin Simpson
Anything that improves performance on smaller devices is a win for me. Posting from a mobile, pardon my terseness. ~ C. On Nov 16, 2009 6:41 PM, wrote: Quoting Pedro Lopez-Cabanillas : >> >> well, it's been a _long_ ti... Good point. Couldn't mute be accomplished by simply setting the volume M

Re: [fluid-dev] fluid_sequencer_t funkiness

2009-10-03 Thread Corbin Simpson
On 10/03/2009 04:47 PM, j...@resonance.org wrote: > Glad you figured it out. Out of curiosity, will you be making your > Python binding available? Certainly. It's on my github at http://github.com/MostAwesomeDude/pyfluidsynth right now. I will be adding more extensions in order to make it easier

Re: [fluid-dev] fluid_sequencer_t funkiness

2009-10-03 Thread Corbin Simpson
On 10/03/2009 03:38 AM, Louis B. wrote: > I think you have hit the same problem that I hit when I integrating to > fluidsynth (regarding the no sound anyway) .You need to send a > programme change event before you hear any sound. > > this is what I do as workaround in my initialisation routines b

[fluid-dev] fluid_sequencer_t funkiness

2009-10-02 Thread Corbin Simpson
I'm working on Python bindings for Fluidsynth. The following code, in Cython, makes no sound and locks up my ALSA until the connection times out. cpdef test(self): cdef fluid_event_t* event cdef int ticks ticks = self.ticks event = new_fluid_event() fl