[Csnd] Csound, Ardour and OSC?
Date | 2017-11-30 12:59 |
From | Menno Knevel |
Subject | [Csnd] Csound, Ardour and OSC? |
Before i have to re-invent the wheel - is there someone who knows what OSC commands one needs to send to Ardour for simple tasks like: play from this position, stop, go to that position etc.? -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2017-11-30 16:34 |
From | Tarmo Johannes |
Subject | Re: [Csnd] Csound, Ardour and OSC? |
Hi, Google serch "ardour osc control" reveals:http://manual.ardour.org/using-control-surfaces/controlling-ardour-with-osc/ 2017-11-30 14:59 GMT+02:00 Menno Knevel <magknevel@gmail.com>: Before i have to re-invent the wheel - is there someone who knows what OSC |
Date | 2017-11-30 19:07 |
From | Menno Knevel |
Subject | Re: [Csnd] Csound, Ardour and OSC? |
Yep! Since Ardour seems to finally have a decent Midi Editor system, i'd like to run Blue/Csound on one computer and use Ardour/MIDI with some VSTi, ladspa, LV2 instruments on the other computer. Right now we do have a running system with Jack and Netone, but i understand that Ardour can be controlled nicely with OSC. The Jack/Netone system is heavy on network and OSC seems to be much lighter and more accurate. Is there someone familiar with such a setup and can help me get started with some Csound commands, like: OSCsend kwhen, "udp://192.168.1.131, "3819 "/transport_play", "f", ksomething but OSCsend commands that actually work with Ardour? -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2017-11-30 20:29 |
From | Menno Knevel |
Subject | Re: [Csnd] Csound, Ardour and OSC? |
Okay, i think i've got it: #define IPADDRESS # "192.168.1.xxx" # #define S_PORT # 3819 # OSCsend 1, $IPADDRESS, $S_PORT, "/locate", "ii", 10000, 1 starts Ardour on the second computer at sample position 10000. Okay, time to devise the OSC system! -- Sent from: http://csound.1045644.n5.nabble.com/Csound-General-f1093014.html Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |