diff options
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | README.md | 12 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 25 insertions, 4 deletions
@@ -1,6 +1,21 @@ This file contains information about the changes done to the ODR-DabMux in this repository +2014-04-25: Matthias P. Braendli <matthias@mpb.li> + (v0.7.0): + This version supports a new ZeroMQ frame format. The + old format is still used by toolame-dab, and by + older versions of fdk-aac-dabplus, and will stay + supported. + * odr-dabmux: + Add local-time-offset to remote control, + and support 'auto' setting in configuration file. + Update the munin script. + Support the new ZeroMQ framing format. + Support ZeroMQ CURVE authentication. + Make ZeroMQ buffering better configurable. + Include peak audio level in munin statistics. + 2014-04-04: Matthias P. Braendli <matthias@mpb.li> (v0.6.0): Adds support for MOT Slideshow and DLS, @@ -14,7 +14,7 @@ In addition to the features of CRC-DabMux, this fork contains: - timestamping support required for SFN - a ZeroMQ ETI output that can be used with ODR-DabMod - a ZeroMQ dabplus input that can be used with fdk-aac-dabplus - and toolame-dab, and support ZMQ-CURVE authentication + and toolame-dab, and supports CURVE authentication - supports logging to syslog - supports ZMQ input monitoring with munin tool - includes a Telnet Remote Control for setting/getting parameters @@ -23,8 +23,9 @@ In addition to the features of CRC-DabMux, this fork contains: The src/ directory contains the source code of ODR-DabMux. -The doc/ directory contains the ODR-DabMux documentation, and an example -configuration file. +The doc/ directory contains the ODR-DabMux documentation, an example +configuration file, and the example munin script for the statistics +server. The lib/ directory contains source code of libraries needed to build ODR-DabMux. @@ -42,6 +43,11 @@ See the files LICENCE and COPYING Contact ======= +You can reach users and developers through the CRC-mmbTools +google group. + +Developed by: + Matthias P. Braendli *matthias [at] mpb [dot] li* Pascal Charest *pascal [dot] charest [at] crc [dot] ca* diff --git a/configure.ac b/configure.ac index 71e2b09..f5ec95c 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ # along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ(2.61) -AC_INIT([ODR-DabMux], [0.6.0], [matthias.braendli@mpb.li]) +AC_INIT([ODR-DabMux], [0.7.0], [matthias.braendli@mpb.li]) AC_CONFIG_AUX_DIR([build-aux]) AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE([-Wall subdir-objects foreign]) |