Re: [PD] loading an .aif file into an array

2010-05-31 Thread Derek Holzer
Try: list camilocadavid/Secuencias/Bajo_fiesta1 80.aif | [l2s] | read -resize $1 Bajo but really your life will be much easier when you rename your files so that they do not have spaces in the filenames. If your objective is just to load the AIFF, why not use bang | [openpanel] | read

Re: [PD] loading an .aif file into an array

2010-05-31 Thread Dan Wilcox
On May 31, 2010, at 2:00 AM, Camilo Cadavid Corredor wrote:[rc-filename] doesnt exist in my Pd. it is the extended 0.41.4 version.Is this an object?I still havent been able to upload an .aif file... I also tried the sugested:"list camilocadavid/Secuencias/Bajo_fiesta1 80.aif Bajo"|[l2s]|"read

Re: [PD] loading an .aif file into an array

2010-05-31 Thread Dan Wilcox
On May 31, 2010, at 8:31 AM, Derek Holzer wrote:Try:"list camilocadavid/Secuencias/Bajo_fiesta1 80.aif"|[l2s]|"read -resize $1 Bajo"but really your life will be much easier when you rename your files so that they do not have spaces in the filenames.I respectfully disagree. Pd is not a very good

Re: [PD] loading an .aif file into an array

2010-05-31 Thread Derek Holzer
Hi Dan, go for it! The Dataflow section is a bit of a mess right now, and in need of a massive revision to simplify it, so don't rely on it for content or tone. Please make sure to read this before starting: http://en.flossmanuals.net/bin/view/PureData/WritingConventions You can add a

Re: [PD] loading an .aif file into an array

2010-05-31 Thread Camilo Cadavid
I understand, when I open the patch you attached, the rc-filename object the pd recognizes it, but in a new patch, it doesnt work. Where can I download it from? how? On May 31, 2010, at 5:08 AM, Dan Wilcox wrote: On May 31, 2010, at 2:00 AM, Camilo Cadavid Corredor wrote: [rc-filename]

Re: [PD] loading an .aif file into an array

2010-05-31 Thread Mathieu Bouchard
On Sun, 30 May 2010, Camilo Cadavid Corredor wrote: [rc-filename] doesnt exist in my Pd. it is the extended 0.41.4 version. Is this an object?  I still havent been able to upload an .aif file... I also tried the sugested: list camilocadavid/Secuencias/Bajo_fiesta1 80.aif Bajo | [l2s] | read

Re: [PD] loading an .aif file into an array

2010-05-31 Thread Camilo Cadavid
I did that. I took all the spaces from the file name.. On May 31, 2010, at 11:40 AM, Mathieu Bouchard wrote: On Sun, 30 May 2010, Camilo Cadavid Corredor wrote: [rc-filename] doesnt exist in my Pd. it is the extended 0.41.4 version. Is this an object? I still havent been able to upload

Re: [PD] loading an .aif file into an array

2010-05-30 Thread Camilo Cadavid Corredor
: [PD] loading an .aif file into an array On Wed, 26 May 2010, IOhannes m zmoelnig wrote: On 2010-05-26 03:33, Mathieu Bouchard wrote: On Tue, 25 May 2010, Dan Wilcox wrote: In this case, you'd use [camilocadavid/Secuencias/Bajo_fiesta1 80.aif | [rc-filename] | [read -resize $1

Re: [PD] loading an .aif file into an array

2010-05-26 Thread IOhannes m zmoelnig
On 2010-05-26 03:33, Mathieu Bouchard wrote: On Tue, 25 May 2010, Dan Wilcox wrote: In this case, you'd use [camilocadavid/Secuencias/Bajo_fiesta1 80.aif | [rc-filename] | [read -resize $1 Bajo woops, sorry. I didn't put the table name separately (ouch) that's why its called

Re: [PD] loading an .aif file into an array

2010-05-26 Thread Mathieu Bouchard
On Wed, 26 May 2010, IOhannes m zmoelnig wrote: On 2010-05-26 03:33, Mathieu Bouchard wrote: On Tue, 25 May 2010, Dan Wilcox wrote: In this case, you'd use [camilocadavid/Secuencias/Bajo_fiesta1 80.aif | [rc-filename] | [read -resize $1 Bajo woops, sorry. I didn't put the table name

Re: [PD] loading an .aif file into an array

2010-05-25 Thread IOhannes m zmoelnig
On 2010-05-24 01:25, Camilo Cadavid Corredor wrote: read- resize camilocadavid/Secuencias/Bajo_fiesta1 80.aif Bajo Pd currently has no escape mechanism to write symbols containing spaces. therefore, don't use filenames containing spaces (unless you are prepared to do some trickery) fgmasdr

Re: [PD] loading an .aif file into an array

2010-05-25 Thread Derek Holzer
Or use [openpanel] get the file's location converted to a single symbol which [soundfiler] can use. For example, the following file loads fine with [openpanel] and [soundfiler]: /Volumes/one/derek/audio/84 endgroove.wav However sending the message read -resize /Volumes/one/derek/audio/84

Re: [PD] loading an .aif file into an array

2010-05-25 Thread jurgen
if you have tons of audio files and many contain spaces you can 'automate' the renaming process with some freeware, on the mac I use 'renamer4mac' which parses libraries even with nested folders and replaces spaces (if there are) by anything you chose. On May 25, 2010, at 8:09 PM, IOhannes m

Re: [PD] loading an .aif file into an array

2010-05-25 Thread Mathieu Bouchard
On Tue, 25 May 2010, IOhannes m zmoelnig wrote: On 2010-05-24 01:25, Camilo Cadavid Corredor wrote: read- resize camilocadavid/Secuencias/Bajo_fiesta1 80.aif Bajo Pd currently has no escape mechanism to write symbols containing spaces. therefore, don't use filenames containing spaces

Re: [PD] loading an .aif file into an array

2010-05-25 Thread Mathieu Bouchard
On Tue, 25 May 2010, jurgen wrote: if you have tons of audio files and many contain spaces you can 'automate' the renaming process with some freeware, on the mac I use 'renamer4mac' which parses libraries even with nested folders and replaces spaces (if there are) by anything you chose. I

Re: [PD] loading an .aif file into an array

2010-05-25 Thread Dan Wilcox
On May 25, 2010, at 4:40 PM, Mathieu Bouchard wrote: On Tue, 25 May 2010, IOhannes m zmoelnig wrote: On 2010-05-24 01:25, Camilo Cadavid Corredor wrote: read- resize camilocadavid/Secuencias/Bajo_fiesta1 80.aif Bajo Pd currently has no escape mechanism to write symbols containing

Re: [PD] loading an .aif file into an array

2010-05-25 Thread Mathieu Bouchard
On Tue, 25 May 2010, Dan Wilcox wrote: In this case, you'd use [camilocadavid/Secuencias/Bajo_fiesta1 80.aif | [rc-filename] | [read -resize $1 Bajo woops, sorry. I didn't put the table name separately (ouch) _ _ __ ___ _ _ _ ... | Mathieu

Re: [PD] loading an .aif file into an array

2010-05-24 Thread Andrew Faraday
@iem.at Date: Sun, 23 May 2010 18:25:08 -0500 Subject: [PD] loading an .aif file into an array Hi, I do not know the protocol to open an .aif file in MAC OSX 10.6.4. My current attempts are using a message that reads: read- resize camilocadavid/Secuencias/Bajo_fiesta1 80.aif Bajo. This message

[PD] loading an .aif file into an array

2010-05-23 Thread Camilo Cadavid Corredor
Hi, I do not know the protocol to open an .aif file in MAC OSX 10.6.4. My current attempts are using a message that reads: read- resize camilocadavid/Secuencias/Bajo_fiesta1 80.aif Bajo. This message is connected to the soundfiler's input. The array I created is called Bajo. The thing is I