Log in

View Full Version : .m2v file


Raging_Inferno
4th September 2003, 06:01
am i able to use a m2v file as a source for avisynth?
what do i write in the script?
is another plugin need?
thanks :)

Wilbert
4th September 2003, 09:34
Just open the m2v in dvd2avi and make a d2v file. Open the d2v file in AviSynth, using mpeg2dec3.dll:

Mpeg2source("c:\file.d2v")

Raging_Inferno
5th September 2003, 04:17
mpeg2dec3.dll
hmmmm
where do i get that?

Guest
5th September 2003, 04:58
Look at the sticky post at the top of the thread listing called "Avisynth Filter Collection".

Raging_Inferno
9th September 2003, 02:51
this is the correct command for it right?
LoadPlugin("d:\MPEG2Dec3.DLL")
Mpeg2source("D:\Ending.m2v")

Guest
9th September 2003, 03:21
No. That is not correct.

You need to use DVD2AVI to load the file. Then Save Project to create a D2V file. Then this:

LoadPlugin("mpeg2dec3.dll")
Mpeg2source("ending.d2v")

Raging_Inferno
10th September 2003, 00:02
oooooooooooh! ic
got it
it works! thanks! :D