8 lines
215 B
Markdown
8 lines
215 B
Markdown
# Download and setup ffmpeg
|
|
|
|
|
|
```shell script
|
|
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
|
|
tar -xf ffmpeg-release-amd64-static.tar.xz
|
|
cp -r ffmpeg-6.1-amd64-static/* /usr/bin
|
|
``` |