#!/bin/bash
# Sets up ffmpeg.

# Stop on errors
set -e

PACKAGES=(
  ffmpeg
)

apt-get install -y --no-install-recommends ${PACKAGES[@]}
