[CM] defining Csound ftables
Heinrich Taube
taube at uiuc.edu
Sat Nov 20 11:00:23 PST 2010
oh i see. is it the case that if you ever pass a string to the 'f'
statement then that string should be explicitly quoted in the score
file?
if so then i should add this to the cs:f function.
On Nov 20, 2010, at 12:14 PM, peiman khosravi wrote:
>> send ("cs:f", 2, 0, 32768, 1, sound, 0, 0, 0) ;set f_table 2
>
also in your example you are appear to be sending statements directly,
but then you are generating a .sco file after than . i dont think you
should do this.
that is, if you use sprout at all all .sco output should be done under
the sprout. you can use a second process to do the other sends
process otherprocess (tim)
send ("cs:f", 1, tim, 32768, 10, 1) ;set f_table 1
send ("cs:f", 2, tim, 32768, 1, sound, 0, 0, 0) ;set f_table 2
end
...
sprout (list( otherprocess(0), csound(10, 0.05, {0 0.01 10 0.05}),
"test.sco"))
or something like that
More information about the Cmdist
mailing list