Mkvtoolnix Dts To Ac3



Dts

GUIs and batch operations

  • gMKVExtractGUI: a GUI for mkvextract supporting its full range of features. Runs on Windows and Linux.
  • MKVcleaver: MKVcleaver is a tool for batch extraction of data from MKV files. It is similar to mkvextractGUI in functionality, but allows loading of many files. There's also a forum post on doom9 about it.
  • JMkvpropedit: a batch GUI for mkvpropedit written in Java
  • bulk-mkv-muxer: a multi-threaded tool for batch-muxing of files into Matroska files
  • MKVmergeBatcher: Windows GUI application for batch muxing with mkvmerge.exe
  • MkTags: a simple Perl application that lets you edit the tags in a Matroska file. It can be used with WebM files as well, since this format is based on a profile of Matroska. It supports most of what’s in the official tag specifications.

Ripping DVDs/BluRays into Matroska

  • iso2mkv: a versatile convertor from DVD to XviD/vorbis MKV on top of MPlayer/MEncoder
  • OGMRip: an application and a set of libraries for ripping and encoding DVD into AVI, OGM or Matroska files using a wide variety of codecs. It relies on mplayer, mencoder, ogmtools, oggenc and lame to perform its tasks. The GUI features a clean HIG-compliant GNOME 2 interface and tries to minimize as much as possible esoteric settings.
  • Tuxrip: a Linux bash script for ripping and encoding DVD titles in mpeg4 format (DivX, XviD, FFmpeg libavcodec). It features per title or full DVD ripping, audio extraction and encoding, support for multi-audio tracks, 2-pass video compression for a given file size and quality, compressibility testing for optimal quality and resolution determination, support for codec options, audio/video synchronization, CD burning, and automatic computer shutdown.

Converting Matroska files into other files

AudioMuxer can generate a DVD, MPG or MKV files from a selection of MP3, Flac, (multi-channel) Wav, LPCM, DTSWav, DTS, DTS Master Audio, DTS Hi-Res, AC3 audio tracks. MKV files can be exported to AVCHD or Blu-ray, and an ISO file can be created from the DVD, AVCHD or Blu-ray structure. Guide / How To / Tutorial and Article list. New: OpenShot Video Editor Masks & Transitions Video Tutorial Masks are used in video editing to hide (or erase) parts of a video.

  • mkvdts2ac3: a bash script which can be used for converting the DTS in Matroska (MKV) files to AC3. It provides you with a healthy set of options for controlling the resulting file.

This process was inspired by guy2545… who was inspired by this post on the SABnzbd forum.
First off, you’ll need to install Cygwin I recommend doing a full install of all the packages. It’s about 200mb total. It’s more than likely overkill but it’ll save you from having to go back and rerun the setup again for anything that’s needed if something bombs out later.
With my first attempt at this, I did only the minimal Cygwin install - I was following the post on the SAB forum pretty much to the letter… and the author didn’t go into too much detail about which packages would be needed. To top it all off, the link to the additional pre-compiled packages they gave wasn’t good anymore so I had to follow along with another guide on how to manually compile libdca and aften from scratch. After about the 3rd time of not having a package needed for the process, I just said screw it and did a full install. (Note: the full install might not even be needed now since we’re no longer using libdca and aften noted in guy2545’s post… but it wouldn’t hurt.)
Next, you’ll need mkvtoolnix and FFmpeg.
Extract mkvextract.exe, mkvinfo.exe, mkvmerge.exe and place the individual .EXEs in the cygwin home user dir. (For me it was: C:cygwinhomeTom)
Extract the FFmpeg archive into it’s own ffmpeg sub-directory in the home user dir.
Finally, get the mkvdts2ac3 script and extract that into a new mkvdts2ac3 sub-directory in your home user dir.
(Note: This also requires “rsync”, but that is included in the full install of Cygwin - if you want to try doing the minimal install, make sure you add the “rsync” package.)
Now, go to where your SAB scripts live and make a new batch file out of this… name it whatever you like…


Since we're blending Linix scripts with Windows, a couple items had to be hard coded instead of nicely passing the variables directly from SAB... so you'll have to change some things to suit your setup.

Mkvtoolnix Dts To Ac3 Mp3

First, create a holding directory somewhere on your drive and change the paths in the batch... make sure you keep the slashes going the proper way on the bash portion. (The hard coding is needed because the variables passed from SAB to the linix script will have the slashes going in the wrong direction, which Cygwin removes, turning it into one long file name... and it will fail.) Next, create a processing directory and adjust the batch paths - this has to be different than your SAB downloads location and holding directory... you don't want CouchPotato trying to rename and move stuff as it's being processed. Once you have the processing directory made, adjust your CouchPotato settings to watch it instead of your SAB folder. Finally, in the Categories setup in SAB, set your movies to use the new batch file.
Here's what mine looks like for reference...
So, here's what this script will do...
1) move the mkv to the holding dir renamed as input.mkv
2) run the conversion script on input.mkv
3) move and rename it back to it's original location and name
4) move the entire project folder to the watched processing folder for CouchPotato to rename and sort
The entire process should only take a minute or three.
I'd also recommend going into SAB > Config > Switches and checking the box to Pause Downloading During Post-Processing. Since we're using a holding directory for the processing, having something else finish in the short time it takes to do the conversion will fire off the script and move the new download to the holding directory as input.mkv.
I've got future plans to work in some IF statements so it can also process tv shows and then pass it on to the Sick Beard processing, without having to have seperate batch files for each... but that's for another time as I'm in the process of moving to a new apartment and have a geekling being born in April. :o
Known issues:
- Can't use with multi-part moviesDts
Ac3- Can't use with tv shows that are complete seasons in a single download

Mkvtoolnix Dts To Ac3200


Mkvtoolnix Dts To Ac3 Convert

(I'll come back and edit my OP as needed as I develop this thing... or if anyone wants to throw in advice or has a better method.)