Converting DTS to AC3

Get the track information mkvmerge -i /path/to/matroska.file.mkv Sample output Track ID 1: video (V_MPEG4/ISO/AVC) Track ID 2: audio (A_DTS) This means that the matroska.file.mkv contains two tracks, a video track with id 1 and a DTS track with id 2. Extract the DTS track 2 is the DTS track ID from the given example. mkvextract tracks /path/to/matroska.file.mkv 2:/tmp/dts.file.dts Converting the DTS track to AC3 dcadec -o wavall /tmp/dts.file.dts | aften - /tmp/ac3....

Monitor

calibration This is the command to start the calibrator: dispcal -v -y l -g 2.2 -t 6500 -q h target There are a few options that can be set in this command by changing the values after the option flags (the dash followed by a letter): Monitor type: -y l for LCD displays, -y c for CRT displays Target gamma: -g (gamma) Lets you specify a target gamma, use 2.2 unless you know why you should pick otherwise....

Encoding Audio

cdparanoia cdparanoia -B -- "-3" flac for i in *.flac; do flac -d "$i"; done split cue shnsplit -o flac -f FILE.cue -t %n.%t FILE.flac mp3 for i in *.wav; do lame -vbr-new -V 0 "$i" "${i%.wav}.mp3"; done coverart eyeD3 --add-image=./cover.jpg:FRONT_COVER ./*.mp3 scan bitrate find . -type f -name "*.mp3" -exec mediainfo {} \; | grep -E 'Encoding settings'\|'Complete name'\|'Bit rate mode' > info.txt