Csound Csound-dev Csound-tekno Search About

[Csnd] Realtime file output

Date2007-12-16 23:24
FromMr 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

Date2007-12-16 23:37
From"Arda Eden"
Subject[Csnd] Re: Realtime file output
AttachmentsNone  None  

Date2007-12-16 23:46
FromVictor.Lazzarini@nuim.ie
Subject[Csnd] Re: Realtime file output
AttachmentsNone  None  

Date2007-12-17 00:02
From"Arda Eden"
Subject[Csnd] Re: Re: Realtime file output
AttachmentsNone  None  

Date2007-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,
Are there any documents that we can use in order have more details than csound manuals ? Or any lecture notes that we can use in classes ? Because it's really hard to reach brief documents about the subject.

For example, the difference between "fout" and "csound file.csd -o file.wav"



On Dec 17, 2007 1:46 AM, < Victor.Lazzarini@nuim.ie> wrote:
Try the fout opcode, which is exactly designed for that kind
of thing.

Victor


----- Original Message -----
From: Mr Dave H <ledolcevida@yahoo.com>
Date: Sunday, December 16, 2007 11:24 pm
Subject: [Csnd] Realtime file output
To: "csound@lists.bath.ac.uk" <csound@lists.bath.ac.uk >

>
> 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
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body
> "unsubscribe csound"



--
Arda EDEN
Cumhuriyet University
Faculty of Fine Arts
Department of Music Technology


Date2007-12-17 05:29
From"Steven Yi"
Subject[Csnd] Re: Re: Re: Re: Realtime file output
AttachmentsNone  

Date2007-12-17 08:21
FromVictor.Lazzarini@nuim.ie
Subject[Csnd] Re: Re: Re: Realtime file output
AttachmentsNone  None  

Date2007-12-17 17:42
FromDave
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
some things in
http://music.nuim.ie/musictec/docs/synth.html
and
http://music.nuim.ie/musictec/docs/proc.html

As for fout, you can use it to send the output of
any instrument(s) to file(s), even when playing to DAC,
which is handy. Think of -o... as sending all of Csound's
out buffer to a certain destination, file or DAC, and
fout as sending just an audio signal to a file. You can
have multiple fouts if you'd like.

Victor

----- Original Message -----
From: Arda Eden <ardaeden@gmail.com>
Date: Monday, December 17, 2007 12:03 am
Subject: [Csnd] Re: Re: Realtime file output
To: csound@lists.bath.ac.uk

> Hi Mr. Lazzarini,
> Are there any documents that we can use in order have more
> details than csound manuals ? Or any lecture notes that we can
> use in classes ? Because it's really hard to reach brief
> documents about the subject.
>
>
> For example, the difference between "fout" and
> "csound file.csd -o file.wav"
>
>
>
>
On Dec 17, 2007 1:46 AM, <
>
> Victor.Lazzarini@nuim.ie> wrote:
>
Try the fout opcode, which is exactly designed for that kind
>
> of thing.
>
> Victor

>
> ----- Original Message -----
> From: Mr Dave H <ledolcevida@yahoo.com>
> Date: Sunday, December 16, 2007 11:24 pm
>
> Subject: [Csnd] Realtime file output
> To: "csound@lists.bath.ac.uk" <csound@lists.bath.ac.uk
> >
>
> >
> > 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
>
> >
> >
> > Send bugs reports to this list.
> > To unsubscribe, send email sympa@lists.bath.ac.uk with body
> > "unsubscribe csound"
>

>

> --
> Arda EDEN
> Cumhuriyet University
> Faculty of Fine Arts
> Department of Music Technology
>


Looking for last minute shopping deals? Find them fast with Yahoo! Search.

Date2007-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