Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
How to install ffmpeg on Amazon Linux rhel fedora
mkdir -v -p /usr/local/bin/ffmpeg
cd /usr/local/bin/ffmpeg
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-i686-static.tar.xz
tar -v -xf ffmpeg-release-i686-static.tar.xz --strip-components=1
rm -v -f ffmpeg-release-i686-static.tar.xz
ln -snf /usr/local/bin/ffmpeg/ffmpeg /usr/bin/ffmpeg
ln -snf /usr/local/bin/ffmpeg/ffpropbe /usr/bin/ffpropbe
@leandro-hermes
Copy link

There is a typo on line 7: ffpropbe -> ffprobe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment