#!/bin/bash12# >> Check if curl is installed or nor3if ! command -V curl > /dev/null 2>&1; then4echo "curl not installed, please install it and try again"5exit6fi78wget "https://github.com/aandrew-me/ffmpeg-builds/releases/download/v8/ffmpeg_linux_amd64.tar.xz"9wget "https://github.com/aandrew-me/ffmpeg-builds/releases/download/v8/node_linux_amd64" -O node10chmod +x node11tar -xf ffmpeg_linux_amd64.tar.xz12mv ffmpeg_linux_amd64 ffmpeg13chmod +x ffmpeg/bin/ffmpeg14chmod +x ffmpeg/bin/ffprobe15chmod +x ffmpeg/bin/ffplay16171819