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
0
votes
2 answers

How can I send audio from Processing to ChucK/Pure Data over OSC?

I have a Processing program which derives a string of information which will eventually be turned into sound. This is similar to how photo sounder works, or metasynth, where pixels are turned into sound. I am hoping to be able to stream a portion of…
nosarious
  • 309
  • 1
  • 12
0
votes
3 answers

sending udp packets in format osc (Open sound control) using pnet in Matlab R2012a

I have a question concerning udp packets in MATLAB. I've been using the oscsend.m script to send udp packets to other applications. http://www.mathworks.fr/matlabcentral/fileexchange/31400-send-open-sound-control-osc-messages/content/oscsend.m It…
wacax
  • 141
  • 1
  • 9
0
votes
1 answer

OSC library working on iOS6 with ARC

Now I'm looking for OSC library which working on iOS6 with ARC. I tried vvOSC at first. But I got an error with "- (NSString *) stringByDeletingLastAndAddingFirstSlash;" Maybe Compiler can't find the method. Then I tried to compile liblo for iOS6.…
Kei Yamada
  • 31
  • 2
0
votes
0 answers

I am not able to change the value of a global variable when it is changed inside a library method

I am trying to change layout in an Android app in Processing, layouts just being 2 different methods that are run inside void draw(), but the program seems to fail to recognize the change of the currentLayout value that I am trying to change in void…
refaul
  • 31
  • 1
  • 5
0
votes
1 answer

Filtering spikes in realtime data without adding latency

I need to 'smooth' OSC input data without introducing any latency , ie remove spikes. The only strategy I can think of is to store the preceding sample, compare with the current and if the current is different from the previous by more than some…
Bachalo
  • 6,965
  • 27
  • 95
  • 189
0
votes
1 answer

Unity: Sending OSC messages to MSP/PD client

I am using the UnityOSC library by Joe Garcia to send OSC messages from the Unity Game Engine with the AngryBots demo with help from Joe Garcia's manual on using the library. I am a little confused as to how the files are to be used. Do I just…
Aditya Tb
  • 21
  • 6
0
votes
0 answers

as3 Triggering events from an external source

I am building an AIR app that cues multiple swfs in a kind of playlist. I need the swfs to be called from an external system. I've tried receiving OSC msgs but the media server software running on the external machine will receive but not send OSC.…
MaxG
  • 213
  • 1
  • 9
0
votes
0 answers

AS3 sending and receiving OSC messages

Has anyone successfully sent and received an OSC msg from the same application? I am using the as3/tuio lib: http://bubblebird.at/tuioflash/guides/sending-osc/ and it seems to get a litte messy when you try to go both ways... I am receiving right…
MaxG
  • 213
  • 1
  • 9
0
votes
1 answer

Note duration with OSC, or continuous note ON/OFF

I'm adding OSC capability to my music drum pad type app for iOS. I'm able to send strings when a pad is hit then use OSCulator to map to MIDI, testing using Logic Pro and plays the notes fine, but am wondering how to give Logic Pro note duration…
colin lamarre
  • 1,714
  • 1
  • 18
  • 25
0
votes
1 answer

OSC packet implementation in win 32

Need help regarding OSC packet implementation in win 32 in Visual Studio 2008
0
votes
1 answer

SocketServer.py errors

Can anyone see what the problem is here? I am new to python and I need some guidance. I'm running Python 2.7.3 in 32-bit mode on a mac with Lion. Dependencies include pyOSC pyserial 2.6 python-xbee-api 2.00 optparse_gui 0.2 wxPython 2.8 I would…
RexTheRunt
  • 141
  • 1
  • 3
  • 12
0
votes
1 answer

Python: OSC.py No callback registered to handle OSC-address

I hope someone can help me! I'm getting this error when sending OSC messages: OSCServer: No callback registered to handle OSC-address '/minibee/output/1' I seem to have got a successful OSC server running, but it won't send out any data, and…
RexTheRunt
  • 141
  • 1
  • 3
  • 12
0
votes
2 answers

OSC-address in MAX/MSP

Can anyone help me with a problem routing OSC messages? I'm using Python, MAX/MSP with OSC to communicate between Arduino Xbees. I hope there's someone out there!
RexTheRunt
  • 141
  • 1
  • 3
  • 12
0
votes
1 answer

system call from within osc lib module

i'm using the OSC library found here. i'd like to programmatically exit the program via sys.exit() when a specific msg is received. i use something like the following: oserve = OSC.OSCServer(('localhost', iportarg)) st = threading.Thread(target =…
jml
  • 1,745
  • 6
  • 29
  • 55
0
votes
1 answer

Subclipse on a Mac in a Windows network. Can't Commit - Can't get exclusive lock

I have an iMac running OS X 10.7.3. I have Eclipse Indigo and Subclipse 1.8.6 installed. I'm able to connect to and save files to our repository through Finder when I provide proper credentials. I am able even to check out projects. When I make…
Half_Duplex
  • 5,102
  • 5
  • 42
  • 58
1 2 3
16
17