[Csnd] Realtime file output
Date | 2007-12-16 23:24 |
From | Mr Dave H |
Subject | [Csnd] Realtime file output |
I am using csound5gui to perform in real time. How can I write the performance to a wave file? Thanks David Hanft ____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs |
Date | 2007-12-16 23:46 |
From | Victor.Lazzarini@nuim.ie |
Subject | [Csnd] Re: Realtime file output |
Attachments | None None |
Date | 2007-12-17 02:18 |
From | "Dr. Richard Boulanger" |
Subject | [Csnd] Re: Re: Re: Realtime file output |
Arda, In addition to the manual, The Csound Ezine and Csound Journal are excellent resources for students: And of course - The Csound Book: and - The Csound Catalog: -dr.B. PS. I will be sending you a link for a bunch of OSC instruments I developed for use with the Nintendo WiiMote. They might help with your Reactable work. Hope so. On Dec 16, 2007, at 7:02 PM, Arda Eden wrote: Hi Mr. Lazzarini, |
Date | 2007-12-17 05:29 |
From | "Steven Yi" |
Subject | [Csnd] Re: Re: Re: Re: Realtime file output |
Attachments | None |
Date | 2007-12-17 08:21 |
From | Victor.Lazzarini@nuim.ie |
Subject | [Csnd] Re: Re: Re: Realtime file output |
Attachments | None None |
Date | 2007-12-17 17:42 |
From | Dave |
Subject | [Csnd] Re: Re: Re: Re: Realtime file output |
Thanks for those links they will be good to study... I have tried using the following from command line csound "myfile.csd" -odac -o "test.wav" it compiles but no sound to DAC. is my syntax wrong? thanks...used to be able to do this in csoundAV from the gui. Victor.Lazzarini@nuim.ie wrote: Not specifically fout, but you can find
Looking for last minute shopping deals? Find them fast with Yahoo! Search. |
Date | 2007-12-17 17:48 |
From | "Rory Walsh" |
Subject | [Csnd] Re: Re: Re: Re: Re: Realtime file output |
You can't do that so yes you're syntax is wrong. If you want to output audio in realtime AND output audio to a file you need to use the 'fout' opcode inside your Csound code. For example instr 1 a1 oscil 10000, 440, 1 out a1 fout "fout.test", 2, a1 endin with the following command line >csound myfile.csd -odac I'm not sure if the arguments to fout are correct, you may need to check teh manual. Rory. > Thanks for those links they will be good to study... > > I have tried using the following from command line > > csound "myfile.csd" -odac -o "test.wav" > > it compiles but no sound to DAC. is my syntax wrong? > > thanks...used to be able to do this |