Questions tagged [javaosc]

JavaOSC is primarily a library that gives JVM language programs the ability of serializing, parsing, sending and receiving data in the OSC content format. It is written in Java 8, and its only runtime dependency is a logging facade (SLF4J). It is also an OSGi (a dynamic module system for Java) bundle. Open Sound Control (OSC)

https://github.com/hoijui/JavaOSC

7 questions
5
votes
3 answers

sending OSC (open sound control) messages from an android application

I'm writing an android application using the SDK for android 4.0 I wonder if there is an API for sending OSC messages (Open Sound Control) in the android SDK or should I just use the java OSC SDK. I tried browsing the…
ufk
  • 30,912
  • 70
  • 235
  • 386
3
votes
0 answers

Using JavaOsc to get meter readings from a Behringer X32

I am trying to work with JavaOsc but I am having difficulties establishing a connection. My test code is below, but it does not matter what IP address port I put in, it appears to connect (which is not correct) and there is no response I am…
Luuk D. Jansen
  • 4,402
  • 8
  • 47
  • 90
2
votes
1 answer

Android, OSC, receiver not receiving messages.

I am working on an app that receive message from other program via OSC. The library I used is the JavaOSC from http://www.illposed.com/software/javaosc.html. I put the following in the onCreate method (the try{} part): import…
J_yang
  • 2,672
  • 8
  • 32
  • 61
1
vote
1 answer

Why setBackgroundColor on a layout sometimes crash my app

I'm building an application that can send and received OSC. I'm using JavaOSC, it feets perfectly my needs. I'm sending color value in OSC message, and receiving them also. I send the color from a colorpicker based on this color…
taprik
  • 53
  • 6
1
vote
1 answer

send/receive OSC messages to Android with JavaOSC

I'm trying to write sample Android application that allows to send and receive OSC messages using JavaOSC library. In the example we are sending the current value of a simple Android seekBar with OSC message. The LogCat says: 09-03 04:56:25.695:…
user2739534
  • 11
  • 1
  • 4
0
votes
1 answer

How to send OSC to QLab with Java?

I am trying to send OSC (Open Sound Control) to Figure 53's QLab. So far I have come up with this code. import com.illposed.osc.transport.udp.OSCPortOut; import com.illposed.osc.OSCMessage; import java.io.IOException; import…
Ethan Pervere
  • 23
  • 1
  • 10
0
votes
1 answer

How to receive big OSC blob in Java

I am trying to receive quite big OSC blob (array of more than 10000 bytes) from PureData with Java. I tried oscP5 library and I got ArrayIndexOutOfBoundsException above around 1500 bytes. I have the same with JavaOSC library with the same limitation…
antoine
  • 1,653
  • 11
  • 23