Last active
June 30, 2023 14:57
-
-
Save maulvi/7f0fc59156148e03b94bfdd73a992551 to your computer and use it in GitHub Desktop.
one liner ffmpeg static install
This file contains hidden or 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
apt-get install xz-utils && wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz && mkdir -p ffmpeg-static && tar xvf ffmpeg-release-amd64-static.tar.xz -C ffmpeg-static --strip-components 1 && sudo mv ffmpeg-static/ff* /usr/bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment