With the currently installed ffmpeg I can’t post watermark on converted videos. Can the reason for that be that I have not installed libavfilter library?
Currently # ffmpeg -v looks like:
FFmpeg version SVN-r20374, Copyright (c) 2000-2009 Fabrice Bellard, et al.
built on Oct 26 2009 22:47:01 with gcc 4.1.2 20080704 (Red Hat 4.1.2-46)
configuration: --enable-libmp3lame --enable-libopencore-amrnb --enable-version3 - enable-libopencore-amrwb --enable-version3 --enable-nonfree --enable-libfaad --enable-gpl - -disable-mmx --enable-shared --enable-libfaac --enable-libvorbis
libavutil 50. 3. 0 / 50. 3. 0
libavcodec 52.37. 1 / 52.37. 1
libavformat 52.39. 2 / 52.39. 2
libavdevice 52. 2. 0 / 52. 2. 0
As you can see I’m missing libavfilter? How can I add that library to FFMPEG and successfully add watermark on videos?
Thanks for any help.
It appears you are missing
libavfilter, try installing it using the following:You will then have to enable it in ffmpeg:
Verify it has worked using:
In my experience, installing extensions and codecs after ffmpeg has already been installed does not always work. If it doesn’t work, I recommend removing ffmpeg and starting over.