Opendigitalradio / ODR-EncoderManager

Opendigitalradio Encoder Manager
https://www.opendigitalradio.org
Other
10 stars 11 forks source link
broadcasting dab dab-broadcasting odr-mmbtools

ODR-EncoderManager

OpenDigitalRadio Encoder Manager is a tools to run and configure ODR Encoder easly with a WebGUI.

Note about version V5.0.1

Bug fixes

Note about version V5.0.0

Requirement

New Feature / Change

Bug fixes

INSTALLATION

CONFIGURATION

How to set DLS / DL+ / SLS

Set DLS / DL+ for all encoder To set a text metadata used for DLS, use http GET or POST on the Encoder Manager API from your automation software.

http://{ip}:8080/api/setDLS?dls={artist}-{title}

As an alternative DLS+ tags are automatically activated if you use artist & title parameters:

http://{ip}:8080/api/setDLS?artist={artist}&title={title}

Many radio automation software can send this information to Encoder Manager API by using a call of this type (for example)

http://{ip}:8080/api/setDLS?dls=%%artist%% - %%title%%

%%artist%% - %%title%% should be replaced with the expression expected from your radio automation software.

At each events on your playlist (when a track start) the radio automation software will send via this url the appropriate metadata to Encoder Manager API. It will be reflected on the DAB signal.

Set DLS / DL+ for specific encoder (from version V4.0.0) If you want to update DLS / DL+ for a specific encoder, you need to find the uniq_id on Encoder > Manage page under Information button

http://{ip}:8080/api/setDLS?dls={artist}-{title}&uniq_id={00000000-0000-0000-0000-000000000000}

Set SLS for all encoder To send slide used for SLS, use http POST on the Encoder Manager API.

curl -X POST -F 'slide_file=@"live.jpg"' http://{ip}:8080/api/setSLS

Set SLS for specific encoder If you want to update SLS for a specific encoder, you need to find the uniq_id on Encoder > Manage page under Information button

curl -X POST -F 'uniq_id={00000000-0000-0000-0000-000000000000}' -F 'slide_file=@"{file.jpg}"' http://{ip}:8080/api/setSLS

ADVANCED