#!/bin/sh

set -eu

input="$1"
output="$2"
preset="$3"

HandBrakeCLI --main-feature -Z "$preset" -i "$input" -o "$output"

