Unix and Linux Discussions Tagged with 7.2 |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
21,996 |
Red Hat |
|
|
|
1 |
11,423 |
Red Hat |
|
|
|
1 |
9,584 |
AIX |
|
|
|
0 |
3,515 |
AIX |
|
|
|
0 |
1,359 |
Software Releases - RSS News |
|
|
|
0 |
1,428 |
Software Releases - RSS News |
|
|
|
0 |
1,271 |
Software Releases - RSS News |
|
|
|
0 |
1,149 |
Software Releases - RSS News |
|
|
|
0 |
1,843 |
Software Releases - RSS News |
|
|
|
0 |
1,124 |
Software Releases - RSS News |
|
|
|
4 |
36,560 |
Shell Programming and Scripting |
|
|
|
0 |
1,263 |
Software Releases - RSS News |
|
|
|
0 |
1,113 |
Software Releases - RSS News |
|
|
|
0 |
1,101 |
Software Releases - RSS News |
|
|
|
0 |
1,260 |
Software Releases - RSS News |
|
|
|
0 |
1,120 |
Software Releases - RSS News |
|
|
|
0 |
1,377 |
Software Releases - RSS News |
|
|
|
0 |
1,293 |
Software Releases - RSS News |
|
|
|
0 |
1,021 |
Software Releases - RSS News |
|
|
|
0 |
1,033 |
Software Releases - RSS News |
|
|
|
0 |
1,054 |
Software Releases - RSS News |
|
|
|
0 |
1,199 |
Software Releases - RSS News |
|
|
|
0 |
1,063 |
Software Releases - RSS News |
|
|
|
0 |
1,041 |
Software Releases - RSS News |
|
|
|
0 |
1,428 |
Software Releases - RSS News |
|
|
|
0 |
1,167 |
Software Releases - RSS News |
|
|
|
0 |
1,333 |
Software Releases - RSS News |
|
|
|
0 |
1,038 |
Software Releases - RSS News |
|
|
|
0 |
1,225 |
Software Releases - RSS News |
|
|
|
0 |
948 |
Software Releases - RSS News |
|
|
|
0 |
1,070 |
Software Releases - RSS News |
|
|
|
0 |
1,133 |
Software Releases - RSS News |
|
|
|
0 |
906 |
Software Releases - RSS News |
|
|
|
0 |
921 |
Software Releases - RSS News |
|
|
|
0 |
1,034 |
Software Releases - RSS News |
|
|
|
0 |
1,544 |
Software Releases - RSS News |
|
|
|
0 |
956 |
Software Releases - RSS News |
|
|
|
0 |
1,064 |
Software Releases - RSS News |
|
|
|
0 |
1,173 |
Software Releases - RSS News |
|
|
|
0 |
938 |
Software Releases - RSS News |
TRACEBACK(1) User Commands TRACEBACK(1)
NAME
Traceback - sends an OSC message
SYNOPSIS
osc-send [options] [url] osc-address [,typetags] [osc arguments]
DESCRIPTION
Traceback (most recent call last):
File "./scripts/osc-send", line 11, in <module>
import txosc # for __version__
ImportError: No module named txosc
File "./scripts/osc-send", line 11, in <module>
import txosc # for __version__
ImportError: No module named txosc
EXAMPLES
The following examples are equivalent:
osc-send osc.tcp://127.0.0.1:17779 /ham/spam ,sif egg 2 3.14159
osc-send --tcp --host=127.0.0.1 --port=17779 --type-tags=sif /ham/spam egg 2 3.14159
osc-send -T -P 17779 /ham/spam egg 2 3.14159
OSC MESSAGES
An OSC message consists of an OSC Address Pattern followed by an OSC Type Tag String followed by zero or more OSC Arguments.
OSC ADDRESSES
An OSC Address Pattern is a string beginning with the character '/' (forward slash). It is mandatory to provide one.
OSC TYPE TAGS
An OSC Type Tag String is a string (beginning with the character ',' (comma)) followed by a sequence of characters corresponding exactly to
the sequence of OSC Arguments in the given message. Each character after the comma is called an OSC Type Tag and represents the type of the
corresponding OSC Argument.
Here is the list of supported type tags:
i - 32bit integer
h - 64bit integer
f - 32bit floating point number
d - 64bit (double) floating point number
s - string
S - symbol
c - char
m - 4 byte midi packet (8 digits hexadecimal)
T - TRUE
F - FALSE
N - NIL
I - INFINITUM
VALUES
Values are space separated. Quoting strings might be handy.
The full Open Sound Control specification can be found at http://opensoundcontrol.org/specification
HISTORY
Written by Arjan Scherpenisse and Alexandre Quessy in 2010.
Traceback (most recent call last): October 2010 TRACEBACK(1)