Questions tagged [osc]

Open Sound Control (OSC) is a protocol for communication among computers, sound synthesizers, and other multimedia devices that is optimized for modern networking technology.

From the OSC Home Page at the CNMAT, UC Berkeley

Bringing the benefits of modern networking technology to the world of electronic musical instruments, OSC's advantages include interoperability, accuracy, flexibility, and enhanced organization and documentation.

This simple yet powerful protocol provides everything needed for real-time control of sound and other media processing while remaining flexible and easy to implement.

Features:

  • Open-ended, dynamic, URL-style symbolic naming scheme
  • Symbolic and high-resolution numeric argument data
  • Real-time data broadcast
  • Pattern matching language to specify multiple recipients of a single message
  • High resolution time tags
  • "Bundles" of messages whose effects must occur simultaneously
  • Query system to dynamically find out the capabilities of an OSC server and get documentation

There are dozens of implementations of OSC, including real-time sound and media processing environments, web interactivity tools, software synthesizers, a large variety programming languages, and hardware devices for sensor measurement. OSC has achieved wide use in fields including computer-based new interfaces for musical expression, wide-area and local-area networked distributed music systems, inter-process communication, and even within a single application.

https://en.wikipedia.org/wiki/Open_Sound_Control

244 questions
-1
votes
1 answer

C# udp socket doesn't receive data from localhost

I'm developing a C# application that talks to other C++ and C# applications using OSC formatted UDP data - To do that, I'm using the Bespoke OSC library. Let's say my machine has the 192.168.1.190 address. My C++ applications seem to be able to use…
Orf Quarenghi
  • 227
  • 3
  • 9
-1
votes
1 answer

Kivy OSC Windows

Thanks for your quick answer laltin. The code lines are here in the .py file. kivy 1.9.0 from kivy.app import App from kivy.uix.floatlayout import FloatLayout from kivy.uix.boxlayout import BoxLayout from kivy.uix.button import Button from…
-2
votes
2 answers

How to make second div move to next line when browser resized

I have 2 divs side by side and I want my second div to move down below of 1st div when browser is resized or viewed in mobile phones. Here's the website: https://zte-iqorsupport.custhelp.com/ The divs that have issue are rn_PageContent and…
rome
  • 1
  • 2
-2
votes
3 answers

Parsing JSON String in Swift to Dictionary

This is probably really simple, but I am new to working with JSON. I am receiving this JSON string from an argument of an OSC message: {"status":"ok","address":"\/workspaces","data":[{"version":"4.2.1","displayName":"Untitled…
1 2 3
16
17