I am not the one that came up with these scripts or procedures but I think this is very valuable information for the people in this forum.
First you need to install X-Code from you Leopard/SL OS Install disc.
Then in Terminal do these in this order. (Not the bold parts
be sure also to hit enter at the end of every time just to make sure that part is done, before going on to the next part)
mkdir /ConverterTemp
This installs CMake
This installs Aften
This installs MKVInfo
This installs libdca
This installs MKVDTS2AC3
This installs MKVMerge
This installs MKVExtract
Once you are done all you have to do is open up Terminal and type:
(then drag the file you want to the terminal, or type out the path make sure you put a space in between the file and the command
)
you can also do
(if you do not want to keep the original DTS track and only the AC3 track)
After a few minutes depending on your machine you should now have an AC3 track in your MKV.
Credit goes to. L. Preston Sego III http://www.lprestonsegoiii.com/
First you need to install X-Code from you Leopard/SL OS Install disc.
Then in Terminal do these in this order. (Not the bold parts
mkdir /ConverterTemp
This installs CMake
Code:
cd /ConverterTemp/
curl -O [url]http://www.cmake.org/files/v2.6/[/url] && cmake_install && tar xvzf && cmake_install
./configure
make
sudo make install
This installs Aften
Code:
cd /ConverterTemp
svn co [url]http://aften.svn.sourceforge.net/svnroot/aften[/url] Aften
cd Aften
mkdir default
cd default
cmake /ConverterTemp/Aften/
make
sudo make install
Code:
cd /ConverterTemp
curl -O [url]http://iamthekiller.net/downloads/mkvinfo.zip[/url]
unzip mkvinfo.zip
sudo chmod 755 mkvinfo
sudo cp mkvinfo /usr/local/bin
This installs libdca
Code:
cd /ConverterTemp
svn co svn://svn.videolan.org/libdca/trunk libdca
cd libdca
sudo ./bootstrap
sudo ./configure
sudo make
sudo make install
This installs MKVDTS2AC3
Code:
cd ConverterTemp
curl -O [url]http://iamthekiller.net/downloads/mkvdts2ac3.zip[/url]
unzip mkvdts2ac3.zip
cd mkvdts2ac3
sudo chmod 755 mkvdts2ac3.sh
cp /ConverterTemp/mkvdts2ac3/mkvdts2ac3.sh /ConverterTemp/mkvdts2ac3/mkvdts2ac3
sudo cp /ConverterTemp/mkvdts2ac3/mkvdts2ac3 /usr/local/bin/
This installs MKVMerge
Code:
cd /ConverterTemp
curl -O [url]http://iamthekiller.net/downloads/mkvmerge[/url]
sudo chmod 755 mkvmerge
cp mkvmerge /usr/local/bin/
This installs MKVExtract
Code:
cd /ConverterTemp
curl -O [url]http://iamthekiller.net/downloads/mkvextract[/url]
sudo chmod 755 mkvextract
Once you are done all you have to do is open up Terminal and type:
Code:
mkvdts2ac3
you can also do
Code:
mkvdts2ac3 -n
After a few minutes depending on your machine you should now have an AC3 track in your MKV.
Credit goes to. L. Preston Sego III http://www.lprestonsegoiii.com/