0

I want to install FFmpeg with loudnorm filter in Ubuntu 14.04

1. Downloaded FFmpeg 3.2.4
2. Install libeurl128
3. Configure it as follow:

./configure --cpu=native --enable-pthreads --enable-bzlib --enable-libdc1394 --enable-libfreetype --enable-frei0r --enable-gnutls --enable-libgsm --enable-libmp3lame --enable-librtmp --enable-libopencv --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-vaapi --enable-vdpau --enable-libvorbis --enable-libvpx --enable-zlib --enable-libfdk-aac --enable-nonfree --enable-gpl --enable-swscale --enable-libcdio --enable-x11grab --enable-libx264 --enable-libxvid --enable-libopencore-amrnb --enable-version3 --enable-libopencore-amrwb --enable-version3 --enable-version3 --enable-libvo-amrwbenc --enable-version3 --enable-openssl --enable-libebur128

Tried the next command for test:

./ffmpeg -i udp_mpegts -vcodec copy -af loudnorm /tmp/test.ts

And received the following error:

./ffmpeg: symbol lookup error: ./ffmpeg: undefined symbol: ebur128_relative_threshold

3
  • 1
    libebur128 has been inducted within ffmpeg since Nov 12 2016. Get a binary or compile source after that. External lib not required,
    – Gyan
    Commented Feb 28, 2017 at 11:45
  • @Mulvya Thank you! But I don't understand what need to do. I get a FFmpeg released version from 2017-02-10 and if I deleted --enable-libebur128 from configuration then I received the following error:[AVFilterGraph @ 0x21a18e0] No such filter: 'loudnorm' Can you please explain it with more details? Commented Feb 28, 2017 at 11:52
  • 1
    Get a master branch source (ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2) or binary (johnvansickle.com/ffmpeg), not a release version.
    – Gyan
    Commented Feb 28, 2017 at 11:55

1 Answer 1

3

Since Nov 12 2016, libebur128 has been inducted within the base ffmpeg project, so the external library is not required.

Get a master branch source from https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 -- or -- a binary.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .