Well some day I have to install ffmpeg with librtmp. Well you have to download rtmpdump and configure and install it. However the problem that I want to talk here is about one error that he encountered.
Even I have installed rtmpdump, when I try to configure ffmpeg I got this error:
” cannot find librtmp ”
After a little search I find out that the problem was actuly that pkgconfig was missing. I have try yum install pkgconfig however didn’t find anything.
A sort fix was to locate librtmp.pc, find the path to it and after this to do this
export PKG_CONFIG_PATH=”${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig”
After that I have the ffmpeg with librtmp installed.