Metadata-Version: 2.1
Name: netaudio
Version: 0.0.3
Summary: Control Dante network audio devices without Dante Controller
Home-page: https://github.com/chris-ritsen/network-audio-controller
License: Unlicense
Keywords: audinate,audio,cli,dante,network
Author: Christopher Ritsen
Author-email: chris.ritsen@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia :: Sound/Audio
Requires-Dist: cleo (>=0.8.1,<0.9.0)
Requires-Dist: netifaces (>=0.11.0,<0.12.0)
Requires-Dist: twisted (>=22.1.0,<23.0.0)
Requires-Dist: zeroconf (>=0.38.3,<0.39.0)
Project-URL: Documentation, https://github.com/chris-ritsen/network-audio-controller/wiki
Project-URL: Repository, https://github.com/chris-ritsen/network-audio-controller
Description-Content-Type: text/markdown


### Description

This is a python program for controlling Dante network audio devices (and possibly others in the future). It's very 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](https://gearspace.com/board/music-computers/1221989-dante-routing-without-dante-controller-possible.html).

### Features

- 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

### In progress

- Gather information from multicast traffic (make, model, lock status, subscription changes)

### Planned features

- AES67 device support
- Change channel/device names without affecting existing subscriptions
- Change/display device settings (AES67 mode)
- Client/server modes
- Command prompt
- Control of Shure wireless devices ([Axient receivers](https://pubs.shure.com/view/command-strings/AD4/en-US.pdf) and [PSM transmitters](https://pubs.shure.com/view/command-strings/PSM1000/en-US.pdf))
- Signal presence indicator
- Stand-alone command API
- TUI
- Web application UI
- XML output (such as a Dante preset file)

### Usage

#### Dev dependencies on Arch Linux
```bash
pacman -S community/python-pipx community/python-poetry
```

#### Dev dependencies on MacOS
```bash
brew install pipx poetry
brew link pipx poetry
```

To run without installing:
```bash
poetry install
poetry run netaudio
```

To install the package from a clone:
```bash
pipx install --force --include-deps .
```

To install from a package repository:
```bash
pipx install netaudio
```

Then run `netaudio`

### Documentation

- [Examples](https://github.com/chris-ritsen/network-audio-controller/wiki/Examples)
- [Technical details](https://github.com/chris-ritsen/network-audio-controller/wiki/Technical-details)
- [Testing](https://github.com/chris-ritsen/network-audio-controller/wiki/Testing)

