Created
January 29, 2021 16:21
-
-
Save samhk222/971e7173016843cf105517dbc53b881f to your computer and use it in GitHub Desktop.
How to install ffmpeg on Amazon Linux rhel fedora
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is a typo on line 7:
ffpropbe-> ffprobe