16 lines
255 B
Bash
16 lines
255 B
Bash
#!/bin/sh
|
|
|
|
fetch () {
|
|
echo "Downloading $1..."
|
|
|
|
wget -q "https://registry.npmjs.org/@ffmpeg/$1/-/$1-$2.tgz"
|
|
|
|
mkdir -p public/assets/scripts/$1
|
|
tar -xzf "$1-$2.tgz" --directory assets/scripts/$1
|
|
}
|
|
|
|
mkdir -p public/assets/scripts
|
|
|
|
fetch ffmpeg 0.12.15
|
|
|