Log in

View Full Version : How to deal With Vob & M2v Files just to add text


SUPERIOR
14th May 2008, 09:22
I installed the latest version of AviSynth 2.5.7 and downloaded mpeg2dec3.dll & MPEG2DEC.dll and MPEGDecoder.dll as plugins

1) when I used mpeg2dec3.dll I got error :
("plugin MPEG2DEC.dll is not an AviSynth 2.5 plugin")
I can guess that plugin doesn't belong to this version of AviSynth

2) and when using mpeg2dec3.dll I got this error:
("unable to load "mpeg2dec3.dll")

3) now, when MPEGDecoder.dll chance comes, this script works fine ..No error

Loadplugin("mpeg2dec3.dll")
MPEGSource("F:\RAMBO\Demux2\Video.M2V")
Subtitle("Hello world!", font="georgia", size=16, text_color=$ffbba6, align=7, first_frame = 0, last_frame = 1444)

but the output screen is toooo bad as if the encoder is sick..... I tried this on Vob files too but the same problem


all I want from script is showing text during the text and burning them to DVD...... so what I've to do??

Thanks in advance

jeffy
14th May 2008, 09:53
Get DGIndex:
http://neuron2.net/dgmpgdec/dgmpgdec150rc5.zip

Unpack, run DGIndex.exe, index your m2v video (File->Save Project), you will get the d2v (Video.d2v) file.
Copy the dll file "DGDecode.dll" into the directory plugins ("C:\Program Files\AviSynth 2.5\plugins").

edit your first two lines of the script:

Loadplugin("DGDecode.dll")
MPEG2Source("F:\RAMBO\Demux2\Video.d2v")


More info here:
http://neuron2.net/dgmpgdec/DGIndexManual.html

SUPERIOR
14th May 2008, 10:03
Thanks alot for quick responding
I'll try it and see
my best regards

SUPERIOR
14th May 2008, 10:37
woow.....it works like charm
Jeffy ....many many thanks

jeffy
14th May 2008, 11:08
You're welcome.

Blue_MiSfit
14th May 2008, 18:24
Yeah, all those other MPEG 2 decoders are rather old :)

Donald Graft's marvelous DGIndex is always up to date, and is a really terrific program!

~MiSfit