#!/bin/bash
# FFmpeg video trim wrapper
# Args: input output start duration
INPUT="$1"
OUTPUT="$2"
START="$3"
DURATION="$4"
ffmpeg -y -ss "$START" -i "$INPUT" -t "$DURATION" -c:v copy -c:a copy "$OUTPUT"
