Re: [fluid-dev] FluidSynth sequencer test

2009-04-19 Thread Josh Green
Hello David, On Sat, 2009-04-04 at 20:55 +0200, David Henningsson wrote: > Pedro Lopez-Cabanillas skrev: > > David Henningsson wrote: > >> Pedro Lopez-Cabanillas skrev: > > > It is something that only Josh can > > do, and he is not answering mails right now. > > That is a problem. > By all m

Re: [fluid-dev] FluidSynth sequencer test

2009-04-05 Thread Antoine Schmitt
As the original implementor of the sequencer, I agree with David on this 100% : the wall clock timer is broken and should not be used on any condition. Only the sample timer is right. Le 4 avr. 09 à 20:55, David Henningsson a écrit : Faster than realtime has no sense for the sequencer. It ha

Re: [fluid-dev] FluidSynth sequencer test

2009-04-04 Thread David Henningsson
Pedro Lopez-Cabanillas skrev: > David Henningsson wrote: >> Pedro Lopez-Cabanillas skrev: > It is something that only Josh can > do, and he is not answering mails right now. That is a problem. > I don't fear any problem if we have to wait a bit. OTOH, I've already > explained that I'm not comf

Re: [fluid-dev] FluidSynth sequencer test

2009-04-04 Thread Pedro Lopez-Cabanillas
David Henningsson wrote: > Pedro Lopez-Cabanillas skrev: > > David Henningsson wrote: > > Using a big period size (either 2048 or 4096 is enough) instead of the > > default size (64 in Linux) makes the test program to sound like a drunken > > drummer. Of course, using the right function: fluid_sett

Re: [fluid-dev] FluidSynth sequencer test

2009-04-03 Thread David Henningsson
Pedro Lopez-Cabanillas skrev: > David Henningsson wrote: > Using a big period size (either 2048 or 4096 is enough) instead of the > default > size (64 in Linux) makes the test program to sound like a drunken drummer. Of > course, using the right function: fluid_settings_setint(). I've attached t

Re: [fluid-dev] FluidSynth sequencer test

2009-04-03 Thread Pedro Lopez-Cabanillas
David Henningsson wrote: > Hi and thanks for helping out. Thanks to you for looking at this! > I was a bit puzzled before I figured out > what was wrong with your test though. Replace this row: > > fluid_settings_setnum(settings, "audio.period-size", 4096); > > with: > > fluid_settings_

Re: [fluid-dev] FluidSynth sequencer test

2009-04-03 Thread David Henningsson
Hi and thanks for helping out. I was a bit puzzled before I figured out what was wrong with your test though. Replace this row: fluid_settings_setnum(settings, "audio.period-size", 4096); with: fluid_settings_setint(settings, "audio.period-size", 4096); ...and you will start to notice t

[fluid-dev] FluidSynth sequencer test

2009-04-02 Thread Pedro Lopez-Cabanillas
Hi, Attached is a test program for the sequencer interface of FluidSynth. There are two clones of the same idea: one of them plays a metronome pattern, and the other an arpeggio. In my tests, the rhythm & timing is fairly good, but maybe somebody can hack the test a bit to show the problems. An