-[Which Audio Interface / Soundcard is compatible with Aura?](#which-audio-interface--soundcard-is-compatible-with-aura)
-[ALSA Settings](#alsa-settings)
-[In the Liquidsoap Logs I get 'Error when starting output output_lineout_0: Failure("Error while setting open_pcm: Device or resource busy")!'. What does it mean?](#in-the-liquidsoap-logs-i-get-error-when-starting-output-output_lineout_0-failureerror-while-setting-open_pcm-device-or-resource-busy-what-does-it-mean)
-[How can I find the audio device IDs, required for settings in engine.ini?](#how-can-i-find-the-audio-device-ids-required-for-settings-in-engineini)
-[Resources](#resources)
-[Resources](#resources)
<!-- /TOC -->
<!-- /TOC -->
# AURA Engine
Aura Engine is a play-out engine as part of Automated Radio (Aura) system,
specifically build for the requirements of community radios.
## Features
## Features
- Play audio from multiple sources
- Play audio from multiple sources
...
@@ -57,15 +49,13 @@ To learn more, checkout the [Engine Developer Guide](docs/developer-guide.md) or
...
@@ -57,15 +49,13 @@ To learn more, checkout the [Engine Developer Guide](docs/developer-guide.md) or
It is tested and coded on Debian Stretch and Ubuntu 18.0 with Python 3.6+.
It is tested and coded on Debian Stretch and Ubuntu 18.0 with Python 3.6+.
**File Formats:** Depending on what stream you are going to send, and what recordings you are going to use:
```bash
sudo apt install\
liquidsoap-plugin-aac # for aac support
liquidsoap-plugin-flac # for flac support
liquidsoap-plugin-lame liquidsoap-plugin-mad # for mp3 support
liquidsoap-plugin-opus # for opus support
liquidsoap-plugin-vorbis # for ogg support
```
To simply install support for all available file formats do:
```bash
sudo apt install\
liquidsoap-plugin-all
liquidsoap-plugin-all
```
```
**Install Python Packages:**
### Install Python Packages
```bash
```bash
sudo pip3 install-r requirements.txt
sudo pip3 install-r requirements.txt
```
```
**Setup Database:**
### Setup Database
```bash
```bash
mysql -u root -p
mysql -u root -p
...
@@ -115,33 +85,7 @@ CREATE USER 'aura'@'localhost' IDENTIFIED BY 'secure-password';
...
@@ -115,33 +85,7 @@ CREATE USER 'aura'@'localhost' IDENTIFIED BY 'secure-password';
GRANT ALL PRIVILEGES ON aura_engine.* TO 'aura'@'localhost';
GRANT ALL PRIVILEGES ON aura_engine.* TO 'aura'@'localhost';
```
```
### Alternative Sound Servers
**Configuration:**
Beside ALSA the sound servers **Jack Audio** and **Pulse Audio** are supported.
**Using JACK:**
Install the JACK daemon and GUI:
```bash
sudo apt-get install jackd qjackctl
```
Please ensure to enable "*realtime process priority*" when installing JACK to keep latency low.
Now, you are able to configure your hardware settings using following command:
```bash
qjackctl
```
Next you need to install the JACK plugin for Liquidsoap:
```bash
sudo apt install\
liquidsoap-plugin-jack
```
### Configuration
Run
Run
...
@@ -152,82 +96,39 @@ Run
...
@@ -152,82 +96,39 @@ Run
This creates the folder */var/audio* and copies some default configuration
This creates the folder */var/audio* and copies some default configuration
to */etc/aura/engine.ini*
to */etc/aura/engine.ini*
After that, you have to edit the settings in */etc/aura/engine.ini*. Ensure to take your time to carefully review those settings!
After that, you have to edit the settings in */etc/aura/engine.ini*. Ensure to take
your time to carefully review those settings!
Read more about detailed settings in the [Configuration Guide](docs/configuration-guide.md).
## Running the Engine ###
## Start the Engine
To start the AuRa Engine execute:
To start the AuRa Engine execute:
systemctl start aura-lqs
```bash
systemctl start aura-engine
systemctl start aura-lqs
systemctl start aura-engine
```
and on system boot run following:
and on system boot run following:
systemctl enable aura-lqs
```bash
systemctl enable aura-engine
systemctl enable aura-lqs
systemctl enable aura-engine
```
The first service starts the LiquidSoap Engine, while the latter boots the actual AuRa Engine.
The first service starts the LiquidSoap Engine, while the latter boots the actual AuRa Engine.
## Logging
## Logging
You can access the service logs using:
You can access the service logs using one of:
```
journalctl -u aura-lqs
journalctl -u aura-lqs
and
journalctl -u aura-engine
journalctl -u aura-engine
```
respectively.
## Frequently Asked Questions
### Which Audio Interface / Soundcard is compatible with Aura?
Basically any audio device which is supported by Linux Debian/Ubuntu and has ALSA drivers.
Engine has been tested with following audio interfaces:
- ASUS Xonar DGX,
- Roland Duo-Capture Ex
- Onboard Soundcard (HDA Intel ALC262)
- Native Instruments Komplete Audio 6
### ALSA Settings
#### In the Liquidsoap Logs I get 'Error when starting output output_lineout_0: Failure("Error while setting open_pcm: Device or resource busy")!'. What does it mean?
You probably have set a wrong or occupied device ID.
#### How can I find the audio device IDs, required for settings in engine.ini?
***ALSA**: You can get the device numbers or IDs by executing:
cat /proc/asound/cards
***Pulse Audio**: You might not need this for Pulse Audio, but still, to see all available devices use:
pactl list
**If you cannot find correct ALSA settings**
Well, this is - at least for me - a hard one. I could not manage to find correct ALSA settings for the above mentioned soundcards. The best experience i had with the ASUS Xonar DGX, but still very problematic (especially the first couple of minutes after starting liquidsoap). Since i enabled JACK support i only use that. It is also a bit of trial and error, but works pretty much out of the box.
**If you experience 'hangs' or other artefacts on the output signal**
* reduce the quality (especially, when hangs are on the stream) or
@@ -11,11 +11,37 @@ You can configure up to **five** line IN and OUT stereo channels. Your hardware
...
@@ -11,11 +11,37 @@ You can configure up to **five** line IN and OUT stereo channels. Your hardware
support that. When you use JACK, you will see the additional elements popping up when
support that. When you use JACK, you will see the additional elements popping up when
viewing your connections (with e.g. Patchage).
viewing your connections (with e.g. Patchage).
When you use ALSA, you will have to play around with ALSA settings. In the folder
**Pulse Audio:** When using Ubuntu, Pulse Audio is selected by default. This is convenient,
as you won't have the need to adapt any Engine setting to get audio playing initially.
**ALSA:** When you use ALSA, you will have to play around with ALSA settings. In the folder
`./modules/liquidsoap` is a scipt called alsa_settings_tester.liq. You can start it
`./modules/liquidsoap` is a scipt called alsa_settings_tester.liq. You can start it
with 'liquidsoap -v --debug alsa_settings_tester.liq'. Changing and playing with
with 'liquidsoap -v --debug alsa_settings_tester.liq'. Changing and playing with
settings may help you to find correct ALSA settings.
settings may help you to find correct ALSA settings.
**Jack Audio**: Beside ALSA the sound servers such as
is supported.
Install the JACK daemon and GUI:
```bash
sudo apt-get install jackd qjackctl
```
Please ensure to enable "*realtime process priority*" when installing JACK to keep latency low.
Now, you are able to configure your hardware settings using following command:
```bash
qjackctl
```
Next you need to install the JACK plugin for Liquidsoap:
```bash
sudo apt install\
liquidsoap-plugin-jack
```
## Recordings
## Recordings
You can configure up to **five** recorders in the `[recording]`.
You can configure up to **five** recorders in the `[recording]`.
...
@@ -67,3 +93,65 @@ Configure socket connectivity in the `[socket]` section.
...
@@ -67,3 +93,65 @@ Configure socket connectivity in the `[socket]` section.
## Redis
## Redis
Configure Redis connectivity in the `[redis]` section.
Configure Redis connectivity in the `[redis]` section.
## Frequently Asked Questions
### Which Audio Interface / Soundcard is compatible with Aura?
Basically any audio device which is supported by Linux Debian/Ubuntu and has ALSA drivers.
Engine has been tested with following audio interfaces:
- ASUS Xonar DGX,
- Roland Duo-Capture Ex
- Onboard Soundcard (HDA Intel ALC262)
- Native Instruments Komplete Audio 6
### ALSA Settings
#### Install: I don't want to install all Liquidsoap Audio plugins. How?
Depending on what stream you are going to send, and what recordings you are going to use,
install one or some of the following:
```bash
sudo apt install\
liquidsoap-plugin-aac # for aac support
liquidsoap-plugin-flac # for flac support
liquidsoap-plugin-lame liquidsoap-plugin-mad # for mp3 support
liquidsoap-plugin-opus # for opus support
liquidsoap-plugin-vorbis # for ogg support
```
#### In the Liquidsoap Logs I get 'Error when starting output output_lineout_0: Failure("Error while setting open_pcm: Device or resource busy")!'. What does it mean?
You probably have set a wrong or occupied device ID.
#### How can I find the audio device IDs, required for settings in engine.ini?
***ALSA**: You can get the device numbers or IDs by executing:
cat /proc/asound/cards
***Pulse Audio**: You might not need this for Pulse Audio, but still, to see all available devices use:
pactl list
**If you cannot find correct ALSA settings**
Well, this is - at least for me - a hard one. I could not manage to find correct ALSA settings for the above mentioned soundcards. The best experience i had with the ASUS Xonar DGX, but still very problematic (especially the first couple of minutes after starting liquidsoap). Since i enabled JACK support i only use that. It is also a bit of trial and error, but works pretty much out of the box.
**If you experience 'hangs' or other artefacts on the output signal**
* reduce the quality (especially, when hangs are on the stream) or