Edit: Figured it out, just need to install lib tools
sudo apt-get install libtools
I’m trying to get audio support for a Homebridge plugin to work following these instructions:
https://github.com/dgreif/ring/wiki/FFmpeg#homebridge-audio-support
The first thing I tried was using the dietpi-software tool to install ffmpeg but it builds without fdk-aac. Trying to use the instructions above, I get the following error after executing
./autogen.sh
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --force-missing
Makefile.am:36: error: Libtool library used but 'LIBTOOL' is undefined
Makefile.am:36: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
Makefile.am:36: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
Makefile.am:36: If 'LT_INIT' is in 'configure.ac', make sure
Makefile.am:36: its definition is in aclocal's search path.
autoreconf: automake failed with exit status: 1
Any ideas how I can build ffmpeg on diet with fdk-aac enabled?
Thanks!