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