Control your Biamp Tesira DSPs directly from Python!
Project description
PyTesira
Control your Biamp Tesira DSPs directly from Python!
WORK IN PROGRESS: stuff may rapidly change and/or break, please don't rely on this for anything critical... you have been warned
Obligatory disclaimer: this is an unofficial project which is not in any way affiliated with, or endorsed by, Biamp Systems
Architecture
PyTesira adopts a modular design where the DSP class (src/pytesira/dsp.py) acts as the hub for everything.
A Transport channel (such as SSH) is used for connection to the Tesira DSP device (using the Tesira Text Protocol).
Currently, SSH is the only supported transport (other transports are planned - feel free to submit a pull request also!).
Upon connection, PyTesira tries to create a block map of available DSP blocks. For each supported block type, it also attempts to query that block's attributes (e.g., number of channels and their labels). This can be exported and re-imported to shorten startup time (querying is slow - especially on a complex setup with many nodes).
A Block represents a type of DSP block available (e.g., LevelControl or SourceSelector). It handles everything that
has to do with that specific DSP block - setting up subscriptions, updating state, handling update requests, and more.
Supported blocks and features
LevelControl: read/write mute status, read/write levelsMuteControl: read/write mute statusSourceSelector: read/write mute status (output), set source and output levels, read levels, read and select active sourceDanteInput: read/write mute status, read/write levels, read/write invert setting, read/write fault-on-inactive settingDanteOutput: read/write mute status, read/write levels, read/write invert setting, read/write fault-on-inactive settingAudioOutput: read/write mute status, read/write levels, read/write invert settingGraphicEqualizer: read/write global bypass, read/write band bypass, read/write band gainDucker: read/write most attributes (except logic configuration)PassFilter: read all attributes, write cutoff frequencyUsbInput: read connected/streaming states, read/write DSP side level/mute, read host side mute/levelUsbOutput: read connected/streaming states, read/write DSP side level/mute, read host side mute/levelNoiseGenerator: read/write level, read/write noise type (white/pink), read/write mute status
Supported device-level features
- Start/stop system audio (
dsp.start_system_audio()anddsp.stop_system_audio()) - Reboot device (
dsp.reboot()) - Execute arbitrary commands (
dsp.device_command(command : str))
Tested on
- TesiraFORTÉ DAN (software version
4.11.1.2)
How to use
Install latest version from the PyPI release
pip3 install pytesira
Simple usage example:
from pytesira.dsp import DSP
from pytesira.transport.ssh import SSH
from pytesira.block.GraphicEqualizer import GraphicEqualizer
# Connect to the device, but skip initializing GraphicEqualizer blocks
# (as that's VERY slow - only enable if you really need that support!)
device = DSP()
device.connect(backend = SSH(
hostname = "tesira.device.lan",
username = "admin",
password = "forgetme",
host_key_check = False # Bad option! Bad! Change this in production!
),
skip_block_types = [
GraphicEqualizer
])
# Note: at this point, we need to wait for the DSP to be fully connected/ready.
# To do so, we can simply check for the boolean flag `device.ready`
while not device.ready:
pass
# Save block map, which can then be loaded by specifying `block_map`
# next time when we load the class like so: DSP(block_map = "dsp_test.bmap")
device.save_block_map(output = "dsp_test.bmap")
# Get system info
print(device.hostname)
print(device.serial_number)
print(device.software_version)
# Get faults and network status
print(device.faults)
print(device.network)
# Assuming a 2-channel level control block named `LevelTest`,
# we first look at its channel status
print(device.blocks["LevelTest"].channels)
# Get and change level state for channel 2
print(device.blocks["LevelTest"].channels[2].level)
device.blocks["LevelTest"].channels[2].level = -12.0
# Same thing with mute states
print(device.blocks["LevelTest"].channels[2].muted)
device.blocks["LevelTest"].channels[2].muted = True
# Get information on a source selector block named `SourceTest`
# (this includes all channels and their levels, as well as currently selected source)
print(device.blocks["SourceTest"].sources)
# Get currently selected source and select a new one
# (source 0 = unselect everything)
print(device.blocks["SourceTest"].selected_source)
device.blocks["SourceTest"].selected_source = 4
# Get and adjust cutoff frequency on a pass filter block
print(device.blocks["PassFilterTest"].cutoff_frequency)
device.blocks["PassFilterTest"].cutoff_frequency = 60.0
# We can also bypass pass filters as needed
device.blocks["PassFilterTest"].bypass = True
# DSP blocks also come with callbacks! Here we'll demonstrate a simple callback,
# which will get called whenever a value on the block changes (the entire block object
# is passed back to us as a parameter):
def test_cb(block):
print(type(block), block.channels)
# Note that specifying a key is optional, but if set, allows for the callback
# to be dynamically unregistered with unregister_callback() - or replaced by
# simply registering another callback with the same key!
device.blocks["LevelTest"].register_callback(callback = test_cb, key = "test_callback")
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytesira-0.9.0.tar.gz.
File metadata
- Download URL: pytesira-0.9.0.tar.gz
- Upload date:
- Size: 58.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c7d12cdbdbdbfa3ad49d35e5ee9d2cd744ba5559ddeb2034849f384a44e002a
|
|
| MD5 |
978764239edd7b1fccf76ca18981e548
|
|
| BLAKE2b-256 |
5a864b3461ad173d7fc6e933ca86034dfc3b51de637fb563991a299ca9f83c7c
|
Provenance
The following attestation bundles were made for pytesira-0.9.0.tar.gz:
Publisher:
publish.yml on enp6s0/pytesira
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytesira-0.9.0.tar.gz -
Subject digest:
9c7d12cdbdbdbfa3ad49d35e5ee9d2cd744ba5559ddeb2034849f384a44e002a - Sigstore transparency entry: 173544283
- Sigstore integration time:
-
Permalink:
enp6s0/pytesira@1e0f9cacc70d742c3aa12ea2ae8bd7f14aa2b3f5 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/enp6s0
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1e0f9cacc70d742c3aa12ea2ae8bd7f14aa2b3f5 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pytesira-0.9.0-py3-none-any.whl.
File metadata
- Download URL: pytesira-0.9.0-py3-none-any.whl
- Upload date:
- Size: 53.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dfc200258f3a3a8b97259ff772d5be1597ce7b5db251dc11ecec45b37a722f2
|
|
| MD5 |
d1b2e27b1a09ac0961befb6b0d303373
|
|
| BLAKE2b-256 |
612ccdbb66a0263b7ec4427a152bd3fdc28b47980533af08194bde2104a62d24
|
Provenance
The following attestation bundles were made for pytesira-0.9.0-py3-none-any.whl:
Publisher:
publish.yml on enp6s0/pytesira
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytesira-0.9.0-py3-none-any.whl -
Subject digest:
7dfc200258f3a3a8b97259ff772d5be1597ce7b5db251dc11ecec45b37a722f2 - Sigstore transparency entry: 173544285
- Sigstore integration time:
-
Permalink:
enp6s0/pytesira@1e0f9cacc70d742c3aa12ea2ae8bd7f14aa2b3f5 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/enp6s0
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1e0f9cacc70d742c3aa12ea2ae8bd7f14aa2b3f5 -
Trigger Event:
release
-
Statement type: