Last active
November 16, 2021 06:52
-
-
Save loong/b670903c3d8b8977afaa4440b50f48e1 to your computer and use it in GitHub Desktop.
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
# Taken from https://forums.aws.amazon.com/thread.jspa?messageID=332091 | |
sudo su - | |
cd /usr/local/bin | |
mkdir ffmpeg | |
cd ffmpeg | |
wget http://ffmpeg.gusari.org/static/64bit/ffmpeg.static.64bit.latest.tar.gz | |
tar -xzf ffmpeg.static.64bit.latest.tar.gz | |
ln -s /usr/local/bin/ffmpeg/ffmpeg /usr/bin/ffmpeg | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You might have to install from source. To do this, you'll need yasm.
yum install yasm
then you'll want to wget the file here: https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2
You can unzip it as such: tar -vxjf ./ffmpeg-snapshot.tar.bz2
then finally make it as described here: https://github.com/FFmpeg/FFmpeg/blob/master/INSTALL.md
Hope this helps!