2

I need to get a newer version of libav-tools (containing avconv) to get the AAC-encoder to resample an input 6-channel audio stream into an output 2-channel one.

I successfully built the package, but I realized after that I needed to ./configure --enable-libvo-aacenc to get avconvto use AAC as an encoder. Here's what I'm trying to do :

git clone git://git.libav.org/libav.git
sudo apt-get build-dep libav-tools
cd libav
./configure --enable-libvo-aacenc --enable-gpl --enable-nonfree --enable-version3
make
sudo make install

But I have this instead :

configure&make

I don't understand what I'm doing wrong here... I can't seem to use the libraries that are installed on my Ubuntu.

MrVaykadji
  • 5,965

1 Answers1

2

You need to install the VisualOn AAC encoder library (development files):

sudo apt-get install libvo-aacenc-dev