summaryrefslogtreecommitdiff
path: root/scripts/transcode-handbrake
blob: be92e1fc7055f6cc2b89115fec0768352398b305 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -eu

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

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