11 lines
137 B
Bash
Executable file
11 lines
137 B
Bash
Executable file
#!/bin/bash
|
|
# Sets up ffmpeg.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
PACKAGES=(
|
|
ffmpeg
|
|
)
|
|
|
|
apt-get install -y --no-install-recommends ${PACKAGES[@]}
|