Csound Csound-dev Csound-tekno Search About

[Csnd] Iannix + csound = ?

Date2011-07-13 20:54
FromAnthony Palomba
Subject[Csnd] Iannix + csound = ?
I am trying to get csound to work with Iannix
http://www.iannix.org/en/index.php

Iannix supports OSC so I figured I would use
OSClisten to pick up messages sent. But
csound seems to not get anything...

This is the .csd I am using:

<CsoundSynthesizer>
<CsInstruments>
sr = 44100
ksmps = 100
nchnls = 2

gihandle OSCinit 57120

;Iannix message format
;osc://127.0.0.1:57120/cursor 2 0.671143 nan

instr   1
    kf1 init 0
    kf2 init 0

nxtmsg:
    kk  OSClisten gihandle, "cursor", "if", kf1, kf2
    if (kk == 0) goto ex
        printk 0,kf1
        kgoto nxtmsg
ex:
endin
       
</CsInstruments>
<CsScore>
i1 0 10000
;i2 0 10
;i3 0 10

e
</CsScore>

</CsoundSynthesizer>




Is there something I am missing?




Thanks,
Anthony