Re: [LAD] Utility to read SMPTE LTC audio time-code

2009-04-08 Thread Robin Gareus
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pau Arumí wrote: Hi all, I'm facing the need of converting SMPTE LTC time-code* (encoded in an audio stream) into MTC timecode, to then route to other applications. Does anybody know a Linux application for that, or a library to decode that

[LAD] lv2 sampleRate PortProperty seems not to work

2009-04-08 Thread Renato Fabbri
turtle rdf here: http://svn.assembla.com/svn/audioexperiments/lv2plugs/filtro-notch/filtro-notch.ttl if you go like: svn co http://svn.assembla.com/svn/audioexperiments/lv2plugs/filtro-notch make install freq control is displaying only the fractions of the current sample rate, not the fraction

[LAD] qt and jack

2009-04-08 Thread Gregorio Canelos
Greetings,    I am trying to a connect a bare bones Qt-based client to the JACK audio server , and I am running into a strange run-time error.  I recently posted my question on the Qt-Interest list but have had no luck.  Maybe someone on this list would be kind enough to help...  my Setup is:

Re: [LAD] qt and jack

2009-04-08 Thread Luis Garrido
jack_set_process_callback(client, process, 0); I think you should change this to jack_set_process_callback(client, process, this); jack will store that pointer to your object and pass it back in the process call. As things are now, you are getting back that 0 and you are casting