2024-06-03
This commit is contained in:
20
_-Review/ffmpeg.md
Normal file
20
_-Review/ffmpeg.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# ffmpeg
|
||||
|
||||
- [how-to-install-the-latest-static-build-of-ffmpeg](https://docs.vultr.com/how-to-install-the-latest-static-build-of-ffmpeg)
|
||||
|
||||
```bash
|
||||
mkdir -p /opt/ffmpeg
|
||||
cd /opt/ffmpeg
|
||||
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
|
||||
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz.md5
|
||||
md5sum -c ffmpeg-release-amd64-static.tar.xz.md5
|
||||
tar xvf ffmpeg*.xz
|
||||
cd ffmpeg-*-static
|
||||
ll
|
||||
ln -s "${PWD}/ffmpeg" /usr/local/bin/
|
||||
ln -s "${PWD}/ffprobe" /usr/local/bin/
|
||||
```
|
Reference in New Issue
Block a user