Skip to content

Instantly share code, notes, and snippets.

@samhk222
Created January 29, 2021 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samhk222/971e7173016843cf105517dbc53b881f to your computer and use it in GitHub Desktop.
Save samhk222/971e7173016843cf105517dbc53b881f to your computer and use it in GitHub Desktop.
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