Csound Csound-dev Csound-tekno Search About

[Csnd] Scripts Writing Scripts

Date2014-06-02 22:08
Fromfauveboy
Subject[Csnd] Scripts Writing Scripts
Hi

I've been learning to write music with Csound and C programming languages.
During a performance I would need to launch a Csound script to play a
selection of sounds. Each new script will be of similar design as the
previous except I would need it be able to have access to a new collection
of sound to perform the next song. Can scripts be designed which can be
launched to "rewrite" text within a script in this case audio file names? 
I was basically wondering what sort of concepts/methods exist for what Im
trying to achieve here.

Thank you for reading



--
View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2014-06-02 22:13
FromRory Walsh
SubjectRe: [Csnd] Scripts Writing Scripts
The most versatile way to do this would be using the Csound API. You
can use C to call Csound whenever you like. The other way to do it
would be to write a simple program that uses a system call to launch
Csound. This can be done in any number of programming languages. If
you're interested, the floss manual shows examples of using the Csound
API.

Rory.


On 2 June 2014 22:08, fauveboy  wrote:
> Hi
>
> I've been learning to write music with Csound and C programming languages.
> During a performance I would need to launch a Csound script to play a
> selection of sounds. Each new script will be of similar design as the
> previous except I would need it be able to have access to a new collection
> of sound to perform the next song. Can scripts be designed which can be
> launched to "rewrite" text within a script in this case audio file names?
> I was basically wondering what sort of concepts/methods exist for what Im
> trying to achieve here.
>
> Thank you for reading
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>
>

Date2014-06-02 22:40
FromAnders Genell
SubjectRe: [Csnd] Scripts Writing Scripts
Just to chime in with something likely to fall far outside what you want:
I recently wrote som octave/Matlab scripts that call csound as a system() call. I had data in octave that I wrote to a wave file (wavwrite()) and then had csound read that file with diskin2 by setting the file name argument to diskin2 as a orchestra macro ($INFILE) and had that macro defined in the system call to csound as a command line flag; system('csound -d -W -o out file.wav --omacro:INFILE=infile.wav')

That way I could perform a pretty decent job of combined octave analysis and csound audio manipulation. Batch wise, no less!

Regards,
Anders



2 jun 2014 kl. 23:13 skrev Rory Walsh :

> The most versatile way to do this would be using the Csound API. You
> can use C to call Csound whenever you like. The other way to do it
> would be to write a simple program that uses a system call to launch
> Csound. This can be done in any number of programming languages. If
> you're interested, the floss manual shows examples of using the Csound
> API.
> 
> Rory.
> 
> 
> On 2 June 2014 22:08, fauveboy  wrote:
>> Hi
>> 
>> I've been learning to write music with Csound and C programming languages.
>> During a performance I would need to launch a Csound script to play a
>> selection of sounds. Each new script will be of similar design as the
>> previous except I would need it be able to have access to a new collection
>> of sound to perform the next song. Can scripts be designed which can be
>> launched to "rewrite" text within a script in this case audio file names?
>> I was basically wondering what sort of concepts/methods exist for what Im
>> trying to achieve here.
>> 
>> Thank you for reading
>> 
>> 
>> 
>> --
>> View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666.html
>> Sent from the Csound - General mailing list archive at Nabble.com.
>> 
>> 
>> Send bugs reports to
>>        https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 
> 
> Send bugs reports to
>        https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 
> 
> 


Date2014-06-02 23:32
Fromfauveboy
Subject[Csnd] Re: Scripts Writing Scripts
Okay, interesting :)...could an API prevent me from using the method
headless?



--
View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666p5735673.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2014-06-02 23:46
FromRory Walsh
SubjectRe: [Csnd] Re: Scripts Writing Scripts
You could do it with the API by creating a Csound object and then
compiling it with the options you want. But using a system call is
probably the most straight forward way of doing it if you are new to
C. That's probably a good place to start.

Rory.

p.s. It seems that I answered an earlier mail of yours in the wrong
thread, apologies for the confusion.

On 2 June 2014 23:32, fauveboy  wrote:
> Okay, interesting :)...could an API prevent me from using the method
> headless?
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666p5735673.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>
>

Date2014-06-03 13:26
Fromfauveboy
Subject[Csnd] Re: Scripts Writing Scripts
Ah okay so its an 'application' thats taking a instance of Csound and I guess
I could give Csound messages to switch to different functions/scripts I
guess of Csound to play a new song? ....Could these messages potentially an
assigned OSC message?

Oh Don't worry there wasn't too much of a confusion :) 



--
View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666p5735682.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2014-06-03 13:30
Fromfauveboy
Subject[Csnd] Re: Scripts Writing Scripts
Ah okay so its an 'application' thats taking a instance of Csound and I guess
I could give Csound messages to switch to different functions/scripts I
guess of Csound to play a new song? ....Could these messages potentially an
assigned OSC message?

Oh Don't worry there wasn't too much of a confusion :) 



--
View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666p5735683.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2014-06-03 13:44
FromRory Walsh
SubjectRe: [Csnd] Re: Scripts Writing Scripts
Yes, you can use your application to launch any number of Csound
instruments, in sequence or simultaneously. OSC shouldn't be a problem
either.

On 3 June 2014 13:30, fauveboy  wrote:
> Ah okay so its an 'application' thats taking a instance of Csound and I guess
> I could give Csound messages to switch to different functions/scripts I
> guess of Csound to play a new song? ....Could these messages potentially an
> assigned OSC message?
>
> Oh Don't worry there wasn't too much of a confusion :)
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Scripts-Writing-Scripts-tp5735666p5735683.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>
>