Skip to content

Commit

Permalink
Merge pull request #3 from Opendigitalradio/next
Browse files Browse the repository at this point in the history
v3.0.0
  • Loading branch information
colisee authored Mar 14, 2022
2 parents 82b0ace + 63fee7f commit 69dbc74
Show file tree
Hide file tree
Showing 27 changed files with 920 additions and 602 deletions.
177 changes: 105 additions & 72 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,72 +1,105 @@
ODR-mmbTools scripts for 24/7 operation
=======================================
version : 2016-10-07

Prerequisites
-------------
You need to have a working ODR-DabMux, ODR-DabMod, ODR-AudioEnc, ODR-PadEnc
and/or Toolame-DAB configuration to use these scripts. Also
[supervisor](http://supervisord.org/) is needed. (apt-get install supervisor)

The tools are expected to be installed in their usual place in /usr/local.

Folder Structure
----------------

The 'config' folder contains all needed configuration file and needed to be
moved into /home/odr/ folder.

* config/mod.conf : contains ODR-DabMod configuration
* config/mux.conf : contains ODR-DabMux configuration
* config/supervisor/ : contains all supervisor configuration files
* config/mot/ : contains all dls and slide files. You need to create fifo
with mkfifo for each radio (e.g. mkfifo /home/odr/config/mot/f3.pad)


About Audio and PAD Encoders
----------------------------

The encoder (ODR-AudioEnc or toolame-dab) writes ICY-Text into a text file. You
need to create this file at first for each radio :
* touch /home/odr/config/mot/f3.txt

ODR-PadEnc reads ICY-Text information from previous text file and writes into
the pad file. This pad file need to be a FIFO and you need to create it for
each radio :
* mkfifo /home/odr/config/mot/f3.pad

If you use Slide Show, you can put your images into the directory under mot
folder corresponding to the radio (example: /home/odr/config/mot/f3/)


About Supervisor
----------------

You need to create sym link into /etc/supervisor/conf.d/ for each radio
configuration file and call supervisorctl to reread and update configuration.
Please refer to the official [supervisor](http://supervisord.org/)
documentation for details.

Example :
* sudo ln -s /home/odr/config/supervisor/f3.conf /etc/supervisor/conf.d/f3.conf
* sudo supervisorctl reread
* sudo supervisorctl update

All services are launched from supervisor.

To show status of all services :
* sudo supervisorctl status

To [stop|start|restart] a service :
* sudo supervisorctl [stop|start|restart] service-name

To apply change after change anything in /home/odr/config/supervisor/ file you
need to call supervisor to reread and update configuration.
* sudo supervisorctl reread
* sudo supervisorctl update

Supervisor redirects all logs from the tools to files in /var/log/supervisor/
You may need to ensure yourself that this directory exists. The logs will get
rotated according to the policy defined by your distribution. More details in
the [child logging](http://supervisord.org/logging.html#child-process-logs)
section of the documentation.
# Table of contents
- [Introduction](#introduction)
- [ODR-mmbTools components](#odr-mmbtools-components)
- [Repository structure](#repository-structure)
- [Operations](#operations)
- [Configuration](#configuration)

# Introduction
The goal of this repository is to provide a:
- Debian shell script that installs or removes the:
- Main components of the odr-mmbTools suite used in a transmission chain
- [Supervisor](http://supervisord.org/) package
- Simple yet functional dab configuration sample that you can adapt to your needs
- Vagrantfile that allows you to quickly setup a lite debian bullseye virtual environment over which to test ODR-mmbTools

# ODR-mmbTools components
- Encoder-manager: provides a web interface to manage audio streams and their related PAD data
- PAD encoder: one per radio station being broadcasted. Gathers radio-related data (ex: artist, song, slogan, logo) and shares it with the related audio encoder
- Audio encoder: one per radio station being broadcasted. Receives the radio web stream, combines it with the data from the PAD encoder and shares it with the multiplexer
- Multiplexer: packs the data from audio encoders into a DAB/DAB+ ensemble and shares it with a modulator
- Multiplex-manager: provides a web interface to view and modify some multiplex parameters
- Modulator: creates a modulation with the multiplexer data and sends it to a transmitter

# Repository structure
## config
This folder contains the sample configuration files. If you use the provided installation script, it will be copied on your system:
- config/odr-dabmod.ini: ODR-DabMod configuration
- config/odr-dabmux.info: ODR-DabMux configuration
- config/supervisor/ODR-encoders.conf: supervisor configuration file for all encoders (audio + PAD)
- config/supervisor/ODR-encoders.conf: supervisor configuration file for all other odr-mmbTools excluding the encoders
- config/mot/: folder with the dls and slide files
## install
This folder contains the installation/removal shell script. Please check the **README.md** file inside this directory to run the installation shell script
## vagrant
This folder contains Vagrant-related files. Please check the **README.md** file inside this directory to setup and run a Vagrant box.

# Operations
In this section:
- **server** relates to the host where you installed the odr-mmbTools and the configuration files
- **client** relates to any computer (including the server)

After you ran the installation script on the server, point the web browser on the client to the **Supervisor web interface** on the host (http://server_address:8001). The default user name is **odr** and the default password is **odr**. Please note that this user name is not a system user profile.

The supervisor web interface provides a graphical interface to start or stop each components of the DAB/DAB+ transmission chain: modulator, multiplexer, encoders (audio & data), encoder-manager and multiplex-manager.

# Configuration
## User access
### Supervisor web interface
If you want to change the default user name and/or user password authorized to access the Supervisor web interface, then apply the following commands:
```
# Change the user name
sudo sed -e 's/^username = odr/^username = whatever_user/' -i /etc/supervisor/supervisord.conf
# Change the user password
sudo sed -e 's/^password = odr/^password = whatever_password/' -i /etc/supervisor/supervisord.conf
```
Please note that *whatever_user* is not related to any linux profiles

### Encoder-manager web interface
If you want to change the default user profile and/or user password authorized to access the Encoder-manager web interface, then apply the following commands:
```
# Change the user name
sed -e 's/"username": "odr"/"username": "whatever_user"/' -i $HOME/config/encodermanager.json
# Change the user password
sed -e 's/"password": "odr"/"password": "whatever_password"/' -i $HOME/config/encodermanager.json
```
Please note that *whatever_user* is not related to any linux profiles

## RF Transmission
### Improve the transmitted RF spectrum
If your hardware/virtual host is not powerful enough, then you should set the following 2 parameters in the $HOME/config/odr-dabmod.ini file to less stringent value:
- modulator rate=2048000
- firfilter enabled=0

### Change the transmission channel
If channel 5A is being used in your area, you can easily switch to a [new transmission channel](http://www.wohnort.org/config/freqs.html) by applying the following command:
```
sed -e 's/^channel=5A/^channel=a_free_channel_in_your_area/' -i $HOME/config/odr-dabmod.ini
```

### Change the SOAPYSDR-compatible device
The modulator sample configuration file is setup for a [HackRF One](https://greatscottgadgets.com/hackrf/one/) using the [SoapySDR](https://github.com/pothosware/SoapySDR/wiki) interface.

If you need to transmit with another SoapySDR-compatible transceiver card, then apply one of the following commands:
```
# LimeSDR
sed -e 's/^device=driver=hackrf/^device=driver=lime/' -i $HOME/config/odr-dabmod.ini
# PlutoSDR
sed -e 's/^device=driver=hackrf/^device=driver=plutosdr/' -i $HOME/config/odr-dabmod.ini
```

### Change the transmission power setting
We recommend that you check the documentation of the SoapySDR module for your device for the field **txgain** in file $HOME/config/odr-dabmod.ini

## Broadcast programs
### Change the name of the multiplex
If you want to change the name of the multiplex, then change the label and shortlabel values within the **ensemble** block in file $HOME/config/odr-dabmux.info

### Change and/or add new programs
If your server is powerful enough, then you can add more services/sub-channels/components
1. Start job **10-EncoderManager** from the Supervisor web access
1. Point the web browser of the client to the **Encoder Manager web interface** on the host (http://server_address:8003). You can use the excellent [radio browser directory](https://www.radio-browser.info) to identify the url of the radio audio stream
1. Modify file $HOME/config/odr-dabmux.info and adapt the services, subchannels and components in relation with the changes you made with the Encoder-Manager. You should use the values mentionned in the [official ETSI TS 101 756 document](https://www.etsi.org/deliver/etsi_ts/101700_101799/101756/02.02.01_60/ts_101756v020201p.pdf).
165 changes: 165 additions & 0 deletions config/encodermanager.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
{
"global": {
"daemon": false,
"max_encoder_instance": 3,
"logs_directory": "/home/pi/ODR-mmbTools/ODR-EncoderManager/logs/",
"supervisor_xmlrpc": "http://odr:odr@127.0.0.1:8001/RPC2",
"static_directory": "/home/pi/ODR-mmbTools/ODR-EncoderManager/static/",
"host": "0.0.0.0",
"supervisor_file": "/home/pi/config/supervisor/ODR-encoders.conf",
"port": 8003
},
"auth": {
"users": [
{
"username": "odr",
"password": "odr"
}
]
},
"odr": [
{
"uniq_id": "defee58a-f768-4ca9-a0f7-88f08b2e8748",
"autostart": "false",
"path": {
"encoder_path": "/usr/local/bin/odr-audioenc",
"padenc_path": "/usr/local/bin/odr-padenc",
"sourcecompanion_path": "/usr/local/bin/odr-sourcecompanion",
"zmq_key_tmp_file": "/var/tmp/zmq-P01.key"
},
"source": {
"type": "stream",
"stats_socket": "/var/tmp/P01.stats",
"stream_url": "http://radiomonaco.ice.infomaniak.ch/radiomonaco-128.mp3",
"stream_writeicytext": "true",
"stream_lib": "vlc",
"alsa_device": "plughw:1,0",
"driftcomp": "true",
"silence_detect": "true",
"silence_duration": "60",
"avt_input_uri": "udp://:32010",
"avt_control_uri": "udp://192.168.128.111:9325",
"avt_pad_port": "9405",
"avt_jitter_size": "80",
"avt_timeout": "4000",
"aes67_sdp_file": "/var/tmp/defee58a-f768-4ca9-a0f7-88f08b2e8748.sdp",
"aes67_sdp": ""
},
"output": {
"type": "dabp",
"output": [
{
"name": "",
"type": "editcp",
"host": "127.0.0.1",
"port": "9001",
"enable": "true"
}
],
"zmq_key": "",
"bitrate": "128",
"samplerate": "48000",
"channels": "2",
"dabp_sbr": "true",
"dabp_ps": "false",
"dabp_afterburner": "true",
"dab_dabmode": "j",
"dab_dabpsy": "1",
"edi_identifier": "",
"edi_timestamps_delay": ""
},
"padenc": {
"enable": "true",
"pad": "34",
"dls_file": "/home/pi/config/mot/P01/INFO.dls",
"slide_directory": "/home/pi/config/mot/P01/slide/",
"slide_sleeping": "0",
"slide_once": "false",
"raw_dls": "false",
"raw_slides": "false",
"uniform_label": "12",
"uniform_label_ins": "1200",
"slide_carousel_interval": "",
"slide_live_interval": "",
"slide_live_lifetime": ""
},
"name": "P01",
"description": "Radio Monaco",
"supervisor_additional_options": {
"user": "pi",
"group": "pi",
"autorestart": "false"
}
},
{
"uniq_id": "7158c498-1ef1-4580-b385-23a3c06ba985",
"autostart": "false",
"path": {
"encoder_path": "/usr/local/bin/odr-audioenc",
"padenc_path": "/usr/local/bin/odr-padenc",
"sourcecompanion_path": "/usr/local/bin/odr-sourcecompanion",
"zmq_key_tmp_file": "/var/tmp/zmq-P02.key"
},
"source": {
"type": "stream",
"stats_socket": "/var/tmp/P02.stats",
"stream_url": "http://media-ice.musicradio.com/CapitalMP3",
"stream_writeicytext": "true",
"stream_lib": "vlc",
"alsa_device": "plughw:1,0",
"driftcomp": "true",
"silence_detect": "true",
"silence_duration": "60",
"avt_input_uri": "udp://:32010",
"avt_control_uri": "udp://192.168.128.111:9325",
"avt_pad_port": "9405",
"avt_jitter_size": "80",
"avt_timeout": "4000",
"aes67_sdp_file": "/var/tmp/7158c498-1ef1-4580-b385-23a3c06ba985.sdp",
"aes67_sdp": ""
},
"output": {
"type": "dabp",
"output": [
{
"name": "",
"type": "editcp",
"host": "127.0.0.1",
"port": "9002",
"enable": "true"
}
],
"zmq_key": "",
"bitrate": "128",
"samplerate": "48000",
"channels": "2",
"dabp_sbr": "true",
"dabp_ps": "false",
"dabp_afterburner": "true",
"dab_dabmode": "j",
"dab_dabpsy": "1",
"edi_identifier": "",
"edi_timestamps_delay": ""
},
"padenc": {
"enable": "true",
"pad": "34",
"dls_file": "/home/pi/config/mot/P02/INFO.dls",
"slide_directory": "/home/pi/config/mot/P02/slide",
"slide_sleeping": "0",
"slide_once": "false",
"raw_dls": "false",
"raw_slides": "false",
"uniform_label": "12",
"uniform_label_ins": "1200"
},
"name": "P02",
"description": "Capital FM London",
"supervisor_additional_options": {
"user": "pi",
"group": "pi",
"autorestart": "false"
}
}
]
}
Loading

0 comments on commit 69dbc74

Please sign in to comment.