README.md > Add ffmpeg portable o2switch setup

This commit is contained in:
2026-07-31 14:01:27 +02:00
parent d811eb0abc
commit 5850ca2c68
+17
View File
@@ -42,3 +42,20 @@
./calibre/ebook-convert --version
```
### FFMPEG
```bash
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
python3 -c "
import lzma
import shutil
with lzma.open('ffmpeg-release-amd64-static.tar.xz') as f_in:
with open('ffmpeg-release-amd64-static.tar', 'wb') as f_out:
shutil.copyfileobj(f_in, f_out)
"
tar -xf ffmpeg-release-amd64-static.tar
rm ffmpeg-release-amd64-static.tar ffmpeg-release-amd64-static.tar.xz
```