diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | README.md | 11 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 14 insertions, 6 deletions
@@ -1,3 +1,10 @@ +2020-04-23: Matthias P. Braendli <matthias@mpb.li> + (v2.6.0): + Add GStreamer-based input. + Add --identifier option for EDI output. + Handle TCP connection automatically for EDI output and fix + multi-output functionality. + 2020-02-11: Matthias P. Braendli <matthias@mpb.li> (v2.5.0): Integrate FDK-AAC into this repository. This removes the external @@ -47,11 +47,12 @@ Requirements For Debian Buster, and related systems, use - $ sudo apt-get install build-essential automake libtool git - $ sudo apt-get install libzmq3-dev libzmq5 - $ sudo apt-get install libvlc-dev vlc-data vlc-plugins-base - $ sudo apt-get install libjack-jackd2-dev jackd2 - $ sudo apt-get install libasound2-dev libasound2 + $ sudo apt install build-essential automake libtool git + $ sudo apt install libzmq3-dev libzmq5 + $ sudo apt install libvlc-dev vlc-data vlc-plugins-base + $ sudo apt install libjack-jackd2-dev jackd2 + $ sudo apt install libasound2-dev libasound2 + $ sudo apt install gstreamer1.0-plugins-bad gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly libgstreamer-plugins-bad1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-ugly1.0-dev libgstreamer1.0-dev **Attention**: on older Debian versions, you'll need `vlc-nox` instead of `vlc-plugins-base` diff --git a/configure.ac b/configure.ac index 7986682..7db7c45 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl -*- Autoconf -*- dnl Process this file with autoconf to produce a configure script. -AC_INIT([ODR-AudioEnc], [2.5.0], [http://opendigitalradio.org/]) +AC_INIT([ODR-AudioEnc], [2.6.0], [http://opendigitalradio.org/]) AC_CONFIG_AUX_DIR(.) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([tar-ustar foreign]) |