osc

https://github.com/zzkt/osc.git

git clone 'https://github.com/zzkt/osc.git'

(ql:quickload :osc)
9

Open Sound Control

This is a common lisp implementation of the Open Sound Control Protocol aka OSC. The code should be close to the ansi standard, and does not rely on any external code/ffi/etc+ to do the basic encoding and decoding of packets. since OSC does not specify a transport layer, messages can be send using TCP or UDP (or carrier pigeons), however it seems UDP is more common amongst the programmes that communicate using the OSC protocol. the osc-examples.lisp file contains a few simple examples of how to send and recieve OSC via UDP, and so far seems reasonably compatible with the packets send from/to max-msp, pd, supercollider and liblo. more details about OSC can be found at http://www.cnmat.berkeley.edu/OpenSoundControl/

the current version of this code is avilable from github

git clone https://github.com/zzkt/osc 

or via asdf-install.. .

(asdf-install:install :osc)

limitations

things to do in :osc

things to do in :osc-ex[tensions|tras]

changes