Socket
Book a DemoInstallSign in
Socket

dante-control

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dante-control

Control Dante audio devices from Node.js

latest
Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

dante-control

A simple Javascript NPM Package for controlling AES67 & dante devices.

Expands on work by Chris Ritsen's Network Audio Controller library for Python.

And initial bash script investigations documented on Gearspace

Current Features:

  • Make Dante Crosspoin
  • Change device names
  • Change Tx and Rx channel names
  • Reset device and channel names
  • Get device Tx and Rx channel count

Work in progress:

  • Get device Tx channel names
  • Get device Rx channel names

Installation

Get it from NPM

npm i dante-control

Usage

const Dante = require("dante-control");

const dante = new Dante();

Set and reseting Device name

dante.setDeviceName("192.168.0.1", "MyNewDanteDeviceName");

dante.resetDeviceName("192.168.0.1");

Set and reseting Channel name

dante.setChannelName("192.168.0.1", "MyRxChannelName", "rx", 1); dante.setChannelName("192.168.0.1", "MyTxChannelName", "tx", 2);

dante.resetChannelName("192.168.0.1", "rx", 1); dante.resetChannelName("192.168.0.1", "tx", 1);

Making a crosspoint

dante.makeCrosspoint("192.168.0.1", "Input 1", "MyDanteDeviceName", 3); dante.makeCrosspoint("192.168.0.1", "Input 2", "MyDanteDeviceName", 4);

Clearing a crosspoint

dante.clearCrosspoint("192.168.0.113", 2);

Get number of Tx and Rx channels from a device

dante.getChannelCount("192.168.0.1");

Keywords

dante

FAQs

Package last updated on 09 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts