atom feed24 messages in at.iem.pd-listRe: [PD] Live Apectrum Analyzer
FromSent OnAttachments
Thomas MayerJan 31, 2007 11:36 am 
Chris McCormickJan 31, 2007 3:46 pm 
carmenJan 31, 2007 8:47 pm 
Jamie BullockFeb 1, 2007 1:20 am 
Thomas MayerFeb 1, 2007 11:40 am 
patrickFeb 1, 2007 11:54 am 
carmenFeb 1, 2007 12:01 pm 
carmenFeb 1, 2007 12:08 pm 
Michael GarrettFeb 1, 2007 4:07 pm 
Thomas MayerFeb 1, 2007 5:39 pm 
PatcoFeb 1, 2007 10:55 pm 
David PowersFeb 1, 2007 11:20 pm 
padawan12Feb 2, 2007 3:50 am 
Yves DegoyonFeb 2, 2007 5:38 am 
SteffenFeb 2, 2007 6:06 am 
Kyle KlipowiczFeb 2, 2007 7:42 am 
PatcoFeb 2, 2007 8:08 am 
carmenFeb 2, 2007 10:55 am 
Thomas MayerFeb 2, 2007 11:38 am 
David PowersFeb 2, 2007 12:09 pm 
PatcoFeb 2, 2007 12:48 pm 
robbert van hulzenFeb 5, 2007 10:42 am 
Erich BergerFeb 7, 2007 5:27 am 
padawan12Feb 8, 2007 2:22 am 
Subject:Re: [PD] Live Apectrum Analyzer
From:carmen (_@whats-your.name)
Date:Feb 1, 2007 12:08:06 pm
List:at.iem.pd-list

So, for now, I'd ask for some specific objects: How can I split lists of audio data, as [snapshot~] only outputs the first value?

if you mean turn them into lists of floats from a signal, theres unpack~, drip,
and similar. you probably want an intermediary table anyways, to eg use a
logarithmic index for the tabread of the frequency bin.. therefore you can
proably bypass the need for drip~/unpack with a tabwrite~/tabread.

also you coan likely do it all in signal domain, for speed reasons..

The 4.fft.examples folders from CVS is empty, and the help for fft~ is not really helpful. Is there any help for tweaking [fft~] available, e.g. setting window size (in frequency domain)?

there is no perfect window size. for the perfect looking spectrogram you
proabbly want several window sizes at once, one for the low freqs, and one for
the higher ones, and combine them into a single image.

but someting like 512 or 1024 samples will proably work to start with, unless
you need nice bass resolution

Is there a pdp/pidip object that can put a picture in a desired position on a pdp window?

can you treat a 1 x 1024 'grid' as a PDP pix? if so maybe thats even faster than
signal ops. especially if theres GPU acceleration..