OSC communication support for duit datafields.
Project description
OSC for Duit
Open Sound Control communication for duit datafields.
This is an addon module for the data ui toolkit (duit) which adds OSC in and output support for DataFields.
Installation
The package can ben installed directly from PyPI.
pip install duit-osc
Documentation
Duit-osc uses python-osc (~=1.8
) as OSC backend to receive and send message. The main class is the OscService
which handles the incoming and outgoing OSC server and client. It also maps the annotated DataFields
to the corresponding route.
OscEndpoint
It is possible to annotate existing DataFields
with the OscEndpoint
annotation. This annotation later tell the OscService
if the field has to be exposed over OSC. It is recommended to gather all DataFields in a single object:
from duit_osc.OscEndpoint import OscEndpoint
class Config:
def __init__(self):
self.name = DataField("Cat") | OscEndpoint()
By default, the name of the variable (e.g. name
) is used as OSC address identifier. It is possible to change the name through the OscEndpoint
annotation.
self.name = DataField("Cat") | OscEndpoint(name="the-cats-name")
Direction
By default, an annotated DataField
sends out an OSC message on change and is changed by incoming OSC messages. This behaviour can be controlled by the OscDirection
option of the OscEndpoint
annotation.
from duit_osc.OscDirection import OscDirection
# ...
self.name = DataField("Cat") | OscEndpoint(direction=OscDirection.Send)
OscDirection
- Send - Does only send the datafield value on change.
- Receive - Does only receive the datafield value.
- Bidirectional (Default) - Sends and receives the value over OSC
OscService
As already mentioned, the OscService handles the OSC server and mapping with the DataFields
. Here is a simple example on how to create an OscService
, add the previous defined config and start the service.
# create an actual instance of the config
config = Config()
# create an osc service
osc_service = OscService()
# add the config object (create mapping) under the route "/config"
osc_service.add_route("/config", config)
# print the api description of the service (experimental)
print(osc_service.api_description())
# run the service
osc_service.run()
Settings
The OscService
has several default arguments, like the host
, in_port
, out_port
and so on. These can be changed before the service is started:
# OscService parameters and the default values
host: str = "0.0.0.0", # on which interface the service is running
in_port: Optional[int] = 8000, # on which port the OscServer is started
out_port: Optional[int] = 9000, # on which port the OscClient is sending
allow_broadcast: bool = True, # if broadcasting is allowed
send_on_receive: bool = False # Indicated if a message that has been received should be also sent out again (reply the change back)
Routes
It is possible to add various objects to the OscService, each with a unique route (address).
osc_service.add_route("/config", config)
Each DataField
is added under this route, so for example the name
field would get the OSC address /config/name
.
Start
To start the service, it is necessary to call run()
. This is a blocking method, which does not return until the service is shutdown. If it should run as a background thread, use the blocking
parameter:
osc_service.run(blocking=False)
API Description
It is possible to print an API description. This is highly experimental and will change in the future:
print(osc_service.api_description())
About
Copyright (c) 2024 Florian Bruggisser
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file duit_osc-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: duit_osc-0.2.0-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d82fff3817ef41fe005ef7d907666308704b1032c83ac1c13a3bb4167612ffa6 |
|
MD5 | b6b682a069eb6db8392d74d51eaeae0b |
|
BLAKE2b-256 | a20763e09cbdd12f25435c04dde66550a9fb65bd58f557a5d8fb98d81ea5eaff |