PDA

View Full Version : Help needed!! How to Encode DTS File!!


Chunmei
10th December 2005, 06:43
I have always been converting DVD to RMVB using the DVD Decrypter and the Avisynth 2.5. But recently I try encoding a DVD with a DTS File to a rmvb, there is no sound coming out from the rmvb.

I do not know how to handle the DTS File and do not know what plugins to include in the script to incorporate DTS File. This is what I have in my script:-

# PLUGINS
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb510.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\VSFilter.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\ac3source.dll")

# SOURCE
mpeg2source("E:\20\20.d2v")
ConvertToYUY2()
Telecide(0).Decimate(10)
crop(6,10,-6,-10)
LanczosResize(448,336)
ac3source("E:\20\20 AC3 T01 2_0ch 192Kbps DELAY -80ms.ac3")

# SUBTITLES
VobSub("E:\20\VTS_02_0.idx")

I tried reading through the forums for the methods of encoding and decoding DTS file, but was real confused by Besweet, Besplit and azidts. I read one thread that says Besweet cannot encode DTS and azidts can do so, and when I download, it mentions that azidts requires some other applications (Besweet etc) to work.

I am very confused over the different types of applications and need guidance in applying the application to incorporate the file into converting rmvb files. If possible, please indicate the specific steps. Thanks a lot.

tebasuna51
10th December 2005, 11:27
You can need: NicAudio plugin for AviSynth http://www.avisynth.org/warpenterprises/files/nicaudio_25_dll_20050704.zip

Then use:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\NicAudio.dll")
...
NicDTSSource("FileName.dts", 2)

instead
ac3source("E:\20\20 AC3 T01 2_0ch 192Kbps DELAY -80ms.ac3")

Rockaria
11th December 2005, 03:22
The avisynth plugins do not require to be loaded explicitly if installed into avsynth's plugin folder(default).

BTW, do we need to place the plugins in the local folders unless for a beta test purpose by overriding the default path?

Chunmei
13th December 2005, 12:54
I tried the steps that you have guided me but it will only be audio but without the video. What I need to convert is the video rmvb together with the sound. Can you please tell me how to incorporate both into one file instead of different files?