A module for OpenWebRX Codec Server that adds support for mbelib to allow Digital Voice decoding in software
This module currently supports the following Digital Voice protocols:
- D-STAR
- DMR
- YSF (both DN and VW mode)
Prerequisites for building this module are a successful build and install of both OpenWebRX Codec Server and mbelib. Please follow the instructions in the links provided above to build and install both dependencies.
IMPORTANT: OpenWebRX Code Server requires the system account 'codecserver' in order to run; that account is very likely not on your system the first time you run codecserver. To create that system account you can use a command like this:
sudo useradd -r -d /nonexistent -c 'OpenWebRX Codec Server' codecserver
Once all the prerequisites are built, installed, and running as expected, these are the steps to build and install 'codecserver-build-module':
git clone https://github.com/fventuri/codecserver-mbelib-module.git
cd codecserver-mbelib-module
mkdir build
cd build
cmake ..
make
sudo make install
cd ..
You will also need the Codec Server configuration file (typically located at '/usr/local/etc/codecserver/codecserver.conf'): if you do not have that directory and file already, you can copy it with the commands:
sudo mkdir -p /usr/local/etc/codecserver
sudo cp conf/codecserver.conf /usr/local/etc/codecserver
If you already have a Codec Server configuration file, just append the '[device:mbelib]' section to the existing configuration file.
Finally restart OpenWebRX Codec Server service:
sudo systemctl restart codecserver
Another piece of software very similar to this one developed by knatterfunker is codecserver-softmbe.
- Many thanks to Jakob Ketterl, DD5JFK for all his hard work on OpenWebRX and Codec Server, and especially for digiham version 0.4 (https://github.com/jketterl/digiham/tree/release-0.4); all the parameters for deinterleaving and descrambling the various Digital Voice protocols come from that version of digiham.
- Also many thanks to the anonymous author(s) of mbelib for all their work researching, implementing, and testing the codecs used in these Digital Voice protocols.
(C) 2021 Franco Venturi - Licensed under the GNU GPL V3 (see LICENSE)