You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
527 B
Bash
18 lines
527 B
Bash
#!/bin/bash
|
|
|
|
# >> Check if curl is installed or nor
|
|
if ! command -V curl > /dev/null 2>&1; then
|
|
echo "curl not installed, please install it and try again"
|
|
exit
|
|
fi
|
|
|
|
wget "https://github.com/aandrew-me/ffmpeg-builds/releases/download/v8/ffmpeg_linux_amd64.tar.xz"
|
|
wget "https://github.com/aandrew-me/ffmpeg-builds/releases/download/v8/node_linux_amd64" -O node
|
|
chmod +x node
|
|
tar -xf ffmpeg_linux_amd64.tar.xz
|
|
mv ffmpeg_linux_amd64 ffmpeg
|
|
chmod +x ffmpeg/bin/ffmpeg
|
|
chmod +x ffmpeg/bin/ffprobe
|
|
chmod +x ffmpeg/bin/ffplay
|
|
|