mkvdts2ac3-docker

This is a docker image for running script mkvdts2ac3.

Which based on sameersbn/ffmpeg as base image with following tools:

Usage

Suppose you have a /path/to/film.mkv file with DTS format audio track.

pull the image

$ docker pull hialan/mkvdts2ac3

change path to the directory which contain film.mkv

$ cd "/path/to"

create a working tmp dir

$ mkdir /path/to/tmp

run the script

$ docker run -it --rm=true -v "`pwd`":/data hialan/mkvdts2ac3 \
	-w /data/tmp -n /data/film.mkv

The image export the mount point /data, so we mount current path to /data, and all the path should use relative path to /data.