Skip to content

Latest commit

 

History

History
75 lines (52 loc) · 1.75 KB

File metadata and controls

75 lines (52 loc) · 1.75 KB

Description

This is a python program for controlling Dante network audio devices (and possibly others in the future). It's early, so expect things to break or switches to change. Use this at your own risk; it's not ready for anything other than a test environment and could make the devices behave unexpectedly. The first goal is to do everything that Dante Controller can do that would be useful for control of the devices from a command-line interface or within scripts.

For more information, check out the gearspace discussion.

Features

Current

  • AVIO input/output gain control
  • Add/remove subscriptions
  • CLI
  • Display active subscriptions, Rx and Tx channels, devices names and addresses, subscription status
  • JSON output
  • Set device latency, sample rate, encoding
  • Set/reset channel names, device names
  • mDNS device discovery

Installation

To install from PyPI:

uv tool install netaudio

Or with pip/pipx:

pip install netaudio

To install from a clone:

uv sync
uv run netaudio

Arch Linux

To install from AUR, build the package with aur/python-netaudio.

Usage

Run netaudio if installed globally, or uv run netaudio from a clone.

Run tests:

uv run pytest

Lint and format:

uv run ruff check .
uv run ruff format .

Documentation