| Hi!
I am testing tabplay in combination with GEN23 for a project, and in the manual it says
Syntaxtabplay ktrig, knumtics, kfn, kout1 [,kout2,..., koutN] Since there are several kouts, is there a way the create matrix f-tables, so that each column corresponds to a separate kout? I can't seem to figure out how. If that's not possible, what then is the intended use for the multiple kouts?
Also, I have filled a table using GEN23 with an ASCII file generated by GNU/Octave. Octave stores values in "scientific" format, i.e. something like 5.89345e+2, and GEN23 does not seem to support that fully since when using tabplay I get different values than what's actually stored. I might be doing something wrong, but if not, maybe such support could added to csound6 :-)
In the meanwhile I will have to figure out how to get Octave to store non-scientific format to an ASCII file...
Best regards,
Perhaps it is the solution (no tested): OSCsend ktrig, "127.0.0.1", 1234, "/iannix", "s", "play"because the address is "/iannix" and not "/iannix/"titoOn Wed, May 30, 2012 at 11:51:20PM -0700, francesco wrote:Hello All,
i was trying a minimal csd to send some messages to IanniX. Below is my
trivial example.
But i have some questions.
- 1 -
Running the csd without an active receiver (Iannix in my example) all is
working right, but if
i have a running receiver Csound send only the first message and then wait
... Either do not
end.
Could be some problem by the receiver (i.e. Iannix) or somethings wrong in
my csd?
- 2 -
if my message is in this form:
OSCsend ktrig, "127.0.0.1", 1234, "/iannix","s", "/play"
IanniX print /iannix//play.
I need to write
OSCsend ktrig, "127.0.0.1", 1234, "/iannix/","s", "play"
for a correct reading of the message by the receiver.
Again, somethings that i wrong or that i do not understand or is a problem
of IanniX, Csound,
Liblo?
Thanks,
ciao,
francesco.
The most beautiful CSD ever:
<CsoundSynthesizer>
<CsOptions>
-m0
</CsOptions>
<CsInstruments>
sr = 44100
ksmps = 1
nchnls = 2
0dbfs = 1
instr SenderP
ktrig init 0
OSCsend ktrig, "localhost", 1234, "/iannix/","si", "play", p4
turnoff
endin
instr SenderS
ktrig init 0
OSCsend ktrig, "localhost", 1234, "/iannix/","si", "stop", p4
turnoff
endin
</CsInstruments>
<CsScore>
i"SenderP" 0 1 1
i"SenderP" 2 1 0
i"SenderS" 4 1 1
i"SenderS" 6 1 0
</CsScore>
</CsoundSynthesizer>
--
View this message in context: http://csound.1045644.n5.nabble.com/about-OSC-tp5713482.html
Sent from the Csound - General mailing list archive at Nabble.com.
Send bugs reports to the Sourceforge bug tracker
https://sourceforge.net/tracker/?group_id=81968&atid=564599
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 the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599Discussions of bugs and features can be posted hereTo unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
|