Log in

View Full Version : HV20 m2t files


Terka
27th September 2009, 12:56
Hi,
have new camera, hv20. How open the m2t files in avisynth correctly?
directshowsource or decode using dgmpgdec?
Tried both and mpg2source looks better, but has to be done manually for more files. Can this be done in script directly?

Or is needed the separate loading:

v=MPEG2Source("__vid__", upConv=1, idct=3, iCC=true, iPP=true, cpu2="ooxxox")
a=MPASource("__aud__")
audiodub(v,a)

?

Guest
27th September 2009, 13:11
You can load multiple files in DGIndex.

Terka
27th September 2009, 13:14
Thank you,
it works for me. What about separate loading?

Guest
27th September 2009, 13:22
What about separate loading? I don't understand your question. Please clarify it.

Terka
27th September 2009, 13:27
somewhere i have seen following:
loading video, audio separately.
v=MPEG2Source("__vid__", upConv=1, idct=3, iCC=true, iPP=true, cpu2="ooxxox")
a=MPASource("__aud__")
audiodub(v,a)

Guest
27th September 2009, 13:50
I suppose you are asking about the template feature. It supports replacing only the streams from the project being saved.

If you want to combine projects in your script you have to do it manually:

v1=MPEG2Source("file1.d2v")
v2=MPEG2Source("file2.d2v")
a1=MPASource("aud1.mpa")
a2=MPASource("aud2.mpa")
audiodub(v1+v2,a1+a2)

Terka
27th September 2009, 14:40
Thank you!
T.