

Here is my experience with installing FFmpeg on my server and how to fix the pitfalls that I encountered.


Today, I’m proud to say that installing FFmpeg is so much easier to install compared to the past, that I dare say it’s simple. I recently thought up some ideas on how I’d like to use FFmpeg, so I thought it was time to give it a try yet again. Today, I’m going to see if I can’t help you get both of these set up on your system.Īdmittedly, it’s been a while since I’ve tried to install FFmpeg, about two years. There’s also a great PHP package called ffmpeg-php that allows for easy use of FFmpeg from inside PHP scripts. However, it can also transcode video and audio (convert the files to different formats), and that is what has me so excited. FFmpeg is an amazing collection of open-source tools that can record and stream video and audio. PATH= " $HOME/bin: $PATH " PKG_CONFIG_PATH= " $HOME/ffmpeg_build/lib/pkgconfig ". configure -prefix= " $HOME/ffmpeg_build " -disable-shared -disable-static PKG_CONFIG_PATH= " $HOME/ffmpeg_build/lib/pkgconfig " CPPFLAGS= "-I/ $HOME/ffmpeg_build/include ". configure -prefix= " $HOME/ffmpeg_build " -disable-examples -disable-unit-tests -enable-vp9-highbitdepth -as=yasm configure -prefix= " $HOME/ffmpeg_build " -with-ogg= " $HOME/ffmpeg_build " -disable-shared

configure -prefix= " $HOME/ffmpeg_build " -bindir= " $HOME/bin " -disable-shared -enable-nasm configure -prefix= " $HOME/ffmpeg_build " -disable-shared configure -prefix= " $HOME/ffmpeg_build " -bindir= " $HOME/bin " -enable-staticĬmake -G "Unix Makefiles " -DCMAKE_INSTALL_PREFIX= " $HOME/ffmpeg_build " -DENABLE_SHARED:bool=off. PKG_CONFIG_PATH= " $HOME/ffmpeg_build/lib/pkgconfig ". configure -prefix= " $HOME/ffmpeg_build " -bindir= " $HOME/bin " Yum -y install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel freetype-devel speex-devel ladspa-devel mercurial cmake
