Hello, i´m from brazil and i just started the manipulacion in PD. I´m having problems in recording... i used the object 'writesf~ 2' connected with two massage box as 'start' and 'stop'...
but nothing happened... so.. can anyone help me?? ifeahouheauea
thanks!!
Hallo, Vitor Monaco hat gesagt: // Vitor Monaco wrote:
Hello, i?m from brazil and i just started the manipulacion in PD. I?m having problems in recording... i used the object 'writesf~ 2' connected with two massage box as 'start' and 'stop'...
but nothing happened... so.. can anyone help me?? ifeahouheauea
writesf~ can be pretty ignorant when it is not treated as it expects to be treated. I've been bitten by that many times, too. Most likely you did not "open" a file prior to recording. It is crucial that you follow the order of commands all the way like writesf~ wants it:
Never skip a step here, then it should work!
Frank
Hello, i?m from brazil and i just started the manipulacion in PD.
I?m having problems in recording... i used the object 'writesf~ 2'
connected
with two massage box as 'start' and 'stop'... aswered to me that the order
matter... but didnt worked! its message box or object box to make a open box... and how i know the file will be when the recording finshisd.
thanks
Vitor
2009/7/28 Frank Barknecht fbar@footils.org
Hallo, Vitor Monaco hat gesagt: // Vitor Monaco wrote:
Hello, i?m from brazil and i just started the manipulacion in PD. I?m having problems in recording... i used the object 'writesf~ 2'
connected
with two massage box as 'start' and 'stop'...
but nothing happened... so.. can anyone help me?? ifeahouheauea
writesf~ can be pretty ignorant when it is not treated as it expects to be treated. I've been bitten by that many times, too. Most likely you did not "open" a file prior to recording. It is crucial that you follow the order of commands all the way like writesf~ wants it:
- "open file.wav"
- "start"
- "stop"
- ... got to 1) again
Never skip a step here, then it should work!
Ciao
Frank
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hallo, Vitor Monaco hat gesagt: // Vitor Monaco wrote:
Hello, i?m from brazil and i just started the manipulacion in PD.
I?m having problems in recording... i used the object 'writesf~ 2'
connected
with two massage box as 'start' and 'stop'... aswered to me that the order
matter... but didnt worked! its message box or object box to make a open box...
It's a message box with the words "open somefile.wav" in it, just as in the help-file for writesf~, that you can access by right-clicking on the writesf~ object and selecting help.
and how i know the file will be when the recording finshisd.
If you just use "open file.wav",then the file should be next to your .pd-file.
You could also use a file-panel for opening a file:
[bang( | [savepanel] | [open $1( | [writesf~]
Here the [...] are object boxes, and the [...( are message boxes.
Frank
Vitor Monaco wrote:
Hello, i?m from brazil and i just started the manipulacion in PD.
I?m having problems in recording... i used the object 'writesf~ 2'
connected
with two massage box as 'start' and 'stop'... aswered to me that the order
matter... but didnt worked! its message box or object box to make a open box...
i'm not sure wht your exact problem is (mainly because original mail and your comments got mixed up)
to be able to select a file for saving via a dialog, connect the following to [writesf~]
[bang( | [openpanel] | [open $1( |
and then click on [bang(
and how i know the file will be when the recording finshisd.
the file we be when the record has finished. but how? it will have the name you gave it before starting the recording.
fgasr IOhannes
Hallo, IOhannes m zmoelnig hat gesagt: // IOhannes m zmoelnig wrote:
to be able to select a file for saving via a dialog, connect the following to [writesf~]
[bang( | [openpanel]
For writesf~ you probably intended to use [savepanel], which allows creating new files. :)
[open $1( |
and then click on [bang(
Frank