Skip to content

Instantly share code, notes, and snippets.

@maulvi
Last active June 30, 2023 14:57
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 maulvi/7f0fc59156148e03b94bfdd73a992551 to your computer and use it in GitHub Desktop.
Save maulvi/7f0fc59156148e03b94bfdd73a992551 to your computer and use it in GitHub Desktop.
one liner ffmpeg static install
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