JavaOSC
JavaOSC copied to clipboard
OSC content format/"protocol" library for JVM languages
Hi, For my application I need to be able to receive messages from all IP addresses which works fine by just using the **OSCPortIn(port)** constructor. But I also need to...
In order to make OSCMessage an immutable object (all fields final), while still having a comfortable way to create messages, we could simply use the builder pattern, like in [OSCPortInBuilder.java](https://github.com/hoijui/JavaOSC/blob/master/modules/core/src/main/java/com/illposed/osc/transport/udp/OSCPortInBuilder.java)...
We might want to implement these modifications in the future: http://opensoundcontrol.org/publication/improving-efficiency-open-sound-control-compressed-address-strings
First, thanks a lot for this library! Helps me a lot :) I want to develope a remote application to control the DAW Ardour via OSC messages. Stateless message sending...
I think the EPOCH_START_JAVA_TIME_0 should be rather 2208988800 seconds as in other OSC implementations: [CNMAT](https://github.com/CNMAT/CNMAT-OSC/blob/master/libOSC/OSC-timetag.c#L79) / [osc-js](https://github.com/adzialocha/osc-js/blob/master/src/atomic/timetag.js#L10) and [this StackOverflow answer](https://stackoverflow.com/a/8805949/1113124)
Hi, we're using this library in https://github.com/SlimeVR/SlimeVR-Server and had troubles with the missing awt.Color class on Android that has been fixed in main now. We are using a hacky workaround,...
Hi, is there any documentation or example code for server / listener? Thanks!
Release?
Hi, release on github is missing - but present on maven repo - maybe copy here as well?
I'm fighting with Android and run into multiple issues, so the general question arise: Is there somewhere a running sample for Android ?