mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 12:00:01 +03:00
15 lines
275 B
Bash
15 lines
275 B
Bash
#!/bin/sh
|
|
case $(uname -m) in
|
|
x86_64)
|
|
ARCH=amd64;;
|
|
aarch64)
|
|
ARCH=arm64;;
|
|
armv7)
|
|
ARCH=armel;;
|
|
armv7l)
|
|
ARCH=armel;;
|
|
*)
|
|
ARCH=$(uname -m);;
|
|
esac
|
|
wget "https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-$ARCH-static.tar.xz" -O ffmpeg.txz
|
|
docker build |