mirror of
https://github.com/jwetzell/osc-go.git
synced 2026-08-31 19:19:01 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 303a782a74 | |||
| 684b75b711 | |||
| 9a5026623f |
@@ -4,6 +4,52 @@ A mostly complete OSC implementation and collection of command line OSC utilitie
|
|||||||
|
|
||||||
## Utilities
|
## Utilities
|
||||||
|
|
||||||
### `sendosc`
|
### sendosc
|
||||||
### `makeosc`
|
```
|
||||||
### `receiveosc`
|
NAME:
|
||||||
|
sendosc - send OSC messages via UDP or TCP
|
||||||
|
|
||||||
|
USAGE:
|
||||||
|
sendosc [global options]
|
||||||
|
|
||||||
|
GLOBAL OPTIONS:
|
||||||
|
--host string host to send OSC message to
|
||||||
|
--port int port to send OSC message to
|
||||||
|
--protocol string protocol to use to send (tcp or udp) (default: "udp")
|
||||||
|
--address string OSC address
|
||||||
|
--arg string [ --arg string ] OSC args
|
||||||
|
--type string [ --type string ] OSC types
|
||||||
|
--slip whether to slip encode the OSC Message bytes
|
||||||
|
--help, -h show help
|
||||||
|
```
|
||||||
|
### makeosc
|
||||||
|
```
|
||||||
|
NAME:
|
||||||
|
makeosc - make osc bytes
|
||||||
|
|
||||||
|
USAGE:
|
||||||
|
makeosc [global options]
|
||||||
|
|
||||||
|
GLOBAL OPTIONS:
|
||||||
|
--address string OSC address
|
||||||
|
--arg string [ --arg string ] OSC args
|
||||||
|
--type string [ --type string ] OSC types
|
||||||
|
--slip whether to slip encode the OSC Message bytes
|
||||||
|
--help, -h show help
|
||||||
|
```
|
||||||
|
### receiveosc
|
||||||
|
```
|
||||||
|
NAME:
|
||||||
|
receiveosc - receive OSC messages via UDP or TCP
|
||||||
|
|
||||||
|
USAGE:
|
||||||
|
receiveosc [global options]
|
||||||
|
|
||||||
|
GLOBAL OPTIONS:
|
||||||
|
--ip string ip to receive OSC messages on (default: "0.0.0.0")
|
||||||
|
--port int port to receive OSC messages on (default: 8888)
|
||||||
|
--protocol string protocol to use to receive (tcp or udp) (default: "udp")
|
||||||
|
--format string format for messages to be output in ('json') (default: "json")
|
||||||
|
--slip whether to slip encode the OSC Message bytes
|
||||||
|
--help, -h show help
|
||||||
|
```
|
||||||
|
|||||||
@@ -2,4 +2,4 @@ module github.com/jwetzell/osc-go
|
|||||||
|
|
||||||
go 1.25.1
|
go 1.25.1
|
||||||
|
|
||||||
require github.com/urfave/cli/v3 v3.10.1
|
require github.com/urfave/cli/v3 v3.11.0
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
|
|||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
||||||
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
||||||
github.com/urfave/cli/v3 v3.10.1 h1:7Kx9H50hrHbRbyxgO1KP6/BcbiGRz0uYh5YyQ30JEEY=
|
github.com/urfave/cli/v3 v3.11.0 h1:P/euJp99kb9p0tlVY+iYTLYYTAQlfl0hR2gUO1Img1Q=
|
||||||
github.com/urfave/cli/v3 v3.10.1/go.mod h1:ysVLtOEmg2tOy6PknnYVhDoouyC/6N42TMeoMzskhso=
|
github.com/urfave/cli/v3 v3.11.0/go.mod h1:ysVLtOEmg2tOy6PknnYVhDoouyC/6N42TMeoMzskhso=
|
||||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
|||||||
Reference in New Issue
Block a user