#!/bin/bash
# Creates an MKV (e.g., from an MP4) that keeps the exact same video and audio codecs.
EXT=".mkv"
OPTS="-c copy"
DIRNAME=`dirname "$0"`
. "$DIRNAME/to_common"
myconvert "$1"
