AES67 Linux Daemon is a Linux implementation of AES67 interoperability standard used to distribute and synchronize real time audio over Ethernet.
See https://en.wikipedia.org/wiki/AES67 for additional info.
The daemon is a Linux process that uses the Merging Technologies ALSA RAVENNA/AES67 Driver to handle PTP synchronization and RTP streams and exposes a REST interface for configuration and status monitoring.
The ALSA AES67 Driver implements a virtual ALSA audio device that can be configured using Sources and Sinks and it's clocked using the PTP clock.
A Source reads audio samples from the ALSA playback device and sends RTP packets to a configured multicast address.
A Sink receives RTP packets from a specific multicast address and writes them to the ALSA capture device.
A user can use the ALSA capture device to receive synchronized incoming audio samples from an RTP stream and the ALSA playback device to send synchronized audio samples to an RTP stream.
The binding between a Source and the ALSA playback device is determined by the channels used during the playback and the configured Source channels map. The binding between a Sink and the ALSA capture device is determined by the channels used while recoding and the configured Sink channels map.
The driver handles the PTP and RTP packets processing and acts as a PTP clock slave to synchronize with a master clock on the specified PTP domain. All the configured Sources and Sinks are synchronized using the same PTP clock.
The daemon communicates with the driver for control, configuration and status monitoring only by using netlink sockets.
The daemon implements a REST interface to configure and monitor the Sources, the Sinks and PTP slave. See README for additional info.
It also implements SAP sources discovery and advertisement compatible with AES67 standard and mDNS sources discovery and advertisement compatible with Ravenna standard.
A WebUI is provided to allow daemon and driver configuration and monitoring. The WebUI uses the daemon REST API and exposes all the supported configuration paramaters for the daemon, the PTP slave clock, the Sources and the Sinks. The WebUI can also be used to monitor the PTP slave status and the Sinks status and to browse the remote SAP and mDNS sources.
AES67 daemon and the WebUI are licensed under GNU GPL.
The daemon uses the following open source:
- Merging Technologies ALSA RAVENNA/AES67 Driver licensed under GNU GPL.
- cpp-httplib licensed under the MIT License
- Avahi common & client libraries licensed under the LGPL License
- Boost libraries licensed under the Boost Software License
daemon directory
This directory contains the AES67 daemon source code.
The daemon can be cross-compiled for multiple platforms and implements the following functionalities:
- communication and configuration of the ALSA RAVENNA/AES67 device driver
- control and configuration of up to 64 sources and sinks using the ALSA RAVENNA/AES67 driver via netlink
- session handling and SDP parsing and creation
- HTTP REST API for the daemon control and configuration
- SAP sources discovery and advertisement compatible with AES67 standard
- mDNS sources discovery and advertisement (using Linux Avahi) compatible with Ravenna standard
- RTSP client and server to retrieve, return and update SDP files via DESCRIBE and ANNOUNCE methods according to Ravenna standard
- IGMP handling for SAP, PTP and RTP sessions
The directory also contains the daemon regression tests in the tests subdirectory.
See the README file in this directory for additional information about the AES67 daemon configuration and the HTTP REST API.
webui directory
This directory contains the AES67 daemon WebUI configuration implemented using React.
With the WebUI a user can do the following operations:
- change the daemon configuration, this causes a daemon restart
- edit PTP clock slave configuration and monitor PTP slave status
- add and edit RTP Sources
- add, edit and monitor RTP Sinks
- browser remote SAP and mDNS RTP sources
3rdparty directory
This directory is used to download the 3rdparty open source. The patches subdirectory contains patches applied to the ALSA RAVENNA/AES67 module to compile with the Linux Kernel 5.x and on ARMv7 platforms and to enable operations on the network loopback device (for testing purposes).
The ALSA RAVENNA/AES67 kernel module is responsible for:
- registering as an ALSA driver
- generating and receiving RTP audio packets
- PTP slave operations and PTP driven interrupt loop
- netlink communication between user and kernel
See ALSA RAVENNA/AES67 Driver README for additional information about the Merging Technologies module and for proper Linux Kernel configuration and tuning.
demo directory
This directory contains a the daemon configuration and status files used to run a short demo on the network loopback device. The demo is described below.
The daemon and the demo have been tested with Ubuntu 18.04 distro on ARMv7 and with Ubuntu 18.04, 19.10 and 20.04 distros on x86 using:
- Linux kernel version >= 4.14.x
- GCC version >= 7.4 / clang >= 6.0.0 (C++17 support required)
- cmake version >= 3.10.2
- node version >= 8.10.0
- npm version >= 3.5.2
- boost libraries version >= 1.65.1
- Avahi service discovery (if enabled) >= 0.7
The BeagleBone® Black board with ARM Cortex-A8 32-Bit processor was used for testing on ARMv7. See Ubuntu 18.04 on BeagleBone® Black for additional information about how to setup Ubuntu on this board.
The ubuntu-packages.sh script can be used to install all the packages required to compile and run the AES67 daemon, the daemon tests and the demo.
Important PulseAudio must be disabled or uninstalled for the daemon to work properly, see PulseAudio and scripts notes.
Make sure you have all the required packages installed, see prerequisite.
To compile the AES67 daemon and the WebUI you can use the build.sh script, see script notes.
The script performs the following operations:
- checkout, patch and build the Merging Technologies ALSA RAVENNA/AES67 module
- checkout the cpp-httplib
- build and deploy the WebUI
- build the AES67 daemon
To run daemon regression tests install the ALSA RAVENNA/AES67 kernel module with:
sudo insmod 3rdparty/ravenna-alsa-lkm/driver/MergingRavennaALSA.ko
setup the kernel parameters with:
sudo sysctl -w net/ipv4/igmp_max_memberships=66
make sure that no instances of the aes67-daemon are running, enter the tests subdirectory and run:
./daemon-test -p
NOTE: when running regression tests make sure that no other Ravenna mDNS sources are advertised on the network because this will affect the results. Regression tests run on loopback interface but Avahi ignores the interface parameter set and will forward to the daemon the sources found on all network interfaces.
To run a simple demo use the run_demo.sh script. See script notes. The demo configures and uses a loopback of 8 channels with AM824 codec (S32 format) at 48Khz and saves the output to a wav file.
The demo performs the following operations:
- setup system parameters
- stop PulseAudio (if installed). This uses and keeps busy the ALSA playback and capture devices causing instability problems. See PulseAudio.
- install the ALSA RAVENNA/AES67 module
- start the ptp4l as master clock on the network loopback device
- start the AES67 daemon and creates a source and a sink according to the status file in the demo directory
- open a browser on the daemon PTP status page
- wait for the Ravenna driver PTP slave to synchronize
- start recording on the configured ALSA sink for 60 seconds to the wave file in ./demo/sink_test.wav
- start playing a test sound on the configured ALSA source
- wait for the recording to complete and terminate ptp4l and the AES67 daemon
See Devices and interoperability tests with the AES67 daemon
-
All the scripts in this repository are provided as a reference to help setting up the system and run a simple demo.
They have been tested on Ubuntu 18.04 19.10 20.04 distros. -
PulseAudio can create instability problems.
Before running the daemon verify that PulseAudio is not running with:ps ax | grep pulseaudio
In case it's running try to execute the following script to stop it:
daemon/scripts/disable_pulseaudio.sh
If after this the process is still alive considering one of these two solutions and reboot the system afterwards:
-
Uninstall it completely with:
sudo apt-get remove pulseaudio
-
Disable it by renaming the executable with:
sudo mv /usr/bin/pulseaudio /usr/bin/_pulseaudio
Other methods to disable PulseAudio may fail and just killing it is not enough since it gets immediately re-spawned.
-