Re: [linux-audio-dev] XAP spec - early scribbles

2003-03-06 Thread Simon Jenkins
[EMAIL PROTECTED] wrote: On Mon, Mar 03, 2003 at 08:36:04PM +, Simon Jenkins wrote: I'm trying to think about the most general model, at least at this stage. It might become unmanageably complex and need to be stripped back. OTOH its possible that a whole lot of complexity could suddenly

[linux-audio-dev] BEAST approaching release

2003-03-06 Thread Stefan Westerfeld
Hi! Tim Janik and I are currently working on sorting out the remaining issues until we can release BEAST - http://beast.gtk.org which is at this point really useful for creating music already. If you want to hear my first approach of doing a song with BEAST, you can find it here: -

Re: [linux-audio-dev] XAP spec - early scribbles

2003-03-06 Thread Simon Jenkins
Dave Griffiths wrote: I could have a quick go at fixing it up in the harness, give you something you can drop in and try. Maybe code it so you can flip an alternative algorithm in and out. Done it: http://www.sbibble.pwp.blueyonder.co.uk/GraphSort.C

[linux-audio-dev] ANN: New version of liblrdf

2003-03-06 Thread Steve Harris
0.2.4 http://plugin.org.uk/lrdf/ liblrdf is a library for handling RDF files describing LADSPA plugins, plus it can also do lightweight general RDF tasks. Changes: Added a pkgconfig file suppllied by Taybin Fixed a buffer overrun triggered by rebuilding the caches Fixed a bunch of

Re: [linux-audio-dev] ANN: New version of liblrdf

2003-03-06 Thread torbenh
On Thu, Mar 06, 2003 at 02:59:26PM +, Steve Harris wrote: 0.2.4 http://plugin.org.uk/lrdf/ liblrdf is a library for handling RDF files describing LADSPA plugins, plus it can also do lightweight general RDF tasks. Changes: Added a pkgconfig file suppllied by Taybin Fixed a

[linux-audio-dev] How to delay video?

2003-03-06 Thread Anders Torger
Not so much related to sound perhaps, but a bit. I'm trying to find a solution to delay a video signal. The idea is to be able to synchronise video with advanced surround sound processing which runs in my convolution engine (BruteFIR) and has 100 - 400 ms I/O-delay (depending on

Re: [linux-audio-dev] How to delay video?

2003-03-06 Thread Maarten de Boer
i have not tried this, but i would say that using mencoder in copy mode writing to a fifo and mplayer reading from that fifo could do the trick. the time between launching mencoder and mplayer determines that delay. maarten

RE: [linux-audio-dev] How to delay video?

2003-03-06 Thread Sreelal Chandrasenan
hardware solution Prime Image video delay (both analog/digital) www.primeimageinc.com -Original Message- From: Anders Torger [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 9:33 AM To: [EMAIL PROTECTED] Subject: [linux-audio-dev] How to delay video? Not so much related to

[linux-audio-dev] shared memory tools?

2003-03-06 Thread Juhana Sadeharju
Hello. I need two functions: make_shm(int size, char *key) -run by root -creates a locked shared memory segment -returns a key (preferably a string) which is used to access the shared memory char *request_shm(char *key) -run by users -returns the address of the requested shared memory

[linux-audio-dev] Octavian 0.1.0 pre-beta released

2003-03-06 Thread Roman Kaljakin
I am pleased to announce Octavian - a realtime software synthesizer for GNU\Linux operating system. Octavians's design is like analog modular synthesizers, so it can be used both as synth and as effect processor. Modular tasks separation allow to extend possibilities in simple way. Modules

[linux-audio-dev] Octavian 0.1.0 pre-beta released

2003-03-06 Thread Roman Kaljakin
I am pleased to announce Octavian - a realtime software synthesizer for GNU\Linux operating system. http://octavian.sourceforge.net http://sourceforge.net/projects/octavian/ Octavians's design is like analog modular synthesizers, so it can be used both as synth and as effect

Re: [linux-audio-dev] shared memory tools?

2003-03-06 Thread rm
On Thu, Mar 06, 2003 at 09:12:03PM +0200, Juhana Sadeharju wrote: Hello. I need two functions: make_shm(int size, char *key) -run by root -creates a locked shared memory segment -returns a key (preferably a string) which is used to access the shared memory shm segments are identified

Re: [linux-audio-dev] shared memory tools?

2003-03-06 Thread Kjetil S. Matheussen
On Thu, 6 Mar 2003, Juhana Sadeharju wrote: Hello. I need two functions: make_shm(int size, char *key) -run by root -creates a locked shared memory segment -returns a key (preferably a string) which is used to access the shared memory char *request_shm(char *key) -run by users