Hi there,
Does anybody know of a way of running PD without the GUI? I'm looking for a way of creating a real time MIDI processor. It needs to run on a PC104 with no display - just to run continuously from when the computer is booted to the moment it is shut down. The only connections it will have to the real world will be MIDI and TCP/IP.
Can anybody help?
Ed
hi,
i am using pd with a hammerfall card and a sample rate of 48kHz. i start it using the following options:
pd -rt -rme -inchannels 8 -outchannels 8 -r 48000
however, the timing of objects (i.e. metro object) seems to use 44100 as a reference (metro ticks too fast). the card is opened correctly at 48kHz.
i temporarely fixed this problem by hardcoding the samplerate in pd to 48kHz. is there a better way to do this?
kind regards, tom
Mea culpa! In pd/src/s_linux.c, line 1804, change:
linux_setchsr(linux_nadcs,linux_ndacs,44100);
to:
linux_setchsr(linux_nadcs,linux_ndacs,srate);
I'll fix for the next release; if you have trouble recompiling, write and I'll send out a "patch release" with the fix...
Miller
On Mon, Feb 05, 2001 at 11:12:23AM +0100, Tom Schouten wrote:
hi,
i am using pd with a hammerfall card and a sample rate of 48kHz. i start it using the following options:
pd -rt -rme -inchannels 8 -outchannels 8 -r 48000
however, the timing of objects (i.e. metro object) seems to use 44100 as a reference (metro ticks too fast). the card is opened correctly at 48kHz.
i temporarely fixed this problem by hardcoding the samplerate in pd to 48kHz. is there a better way to do this?
kind regards, tom
Miller Puckette a écrit :
Mea culpa! In pd/src/s_linux.c, line 1804, change: linux_setchsr(linux_nadcs,linux_ndacs,44100); to: linux_setchsr(linux_nadcs,linux_ndacs,srate);
That why I was unable to run some audio patches at 32Khz. Now it works. Thanks!
hi,
i wrote an alsa sequencer output object that can send the following messages to another alsa sequencer client port:
note noteon noteoff control program rpn nrpn pitch
i will publish it when i am sure it works fine. only the note messages are tested at the moment.
if you are interested please mail me for the latest version.
tom