I am using avisynth to frameserve to tmpg. It's gvi because its from google. Here is what I've got so far...
a=AVIFileSource("D:\Daniels\Google video\2.gvi").Lanczos4Resize(352,240)
b=GetLeftChannel(a).Normalize(.98)
c=GetRightChannel(a).Normalize(.98)
d=MergeChannels(b,c).ResampleAudio(48000)
AudioDub(a,d)
I'm wondering if I should change the colorspace too because avisynth does everything better than TMPG. I just don't know what colorspace a DVD is. The colorspace of the original file is yv12.
Thanks
+ Reply to Thread
Results 1 to 3 of 3
-
Multimedia Design student getting an AAS in Springfield, Oregon. I like Gymnastics and DVD authoring. I think the two go nicely together.
-
Hi-
I've never seen or worked with a Google video, so I'll take it from you that the script works. GetChannel is more streamlined these days:
a=AVIFileSource("D:\Daniels\Google video\2.gvi").Lanczos4Resize(352,240)
b=GetChannel(a,1,2).Normalize(.98).ResampleAudio(4 8000)
AudioDub(a,b)
ConvertToRGB24()
http://www.avisynth.org.ru/docs/english/corefilters/getchannel.htm
TMPGEnc accepts RGB24. Like all MPEG-2 encoders, it'll output YV12.
Similar Threads
-
Is it possible to convert sbs to trioviz infinicolor with avisynth?
By yoda313 in forum Video ConversionReplies: 3Last Post: 4th Dec 2011, 13:53 -
What's the best way to Convert 704 to 720? Avisynth or otherwise
By VideoFanatic in forum Authoring (DVD)Replies: 6Last Post: 23rd Sep 2011, 02:19 -
Convert a DVD to an avi,mkv using Avisynth Scripts and VDubMod or MeGUI
By ppeterr in forum DVD RippingReplies: 6Last Post: 25th Apr 2010, 05:04 -
Convert MP4 and MKV using AVISynth 2.5 and VirtualDub
By DruidCtba in forum Video ConversionReplies: 0Last Post: 7th Nov 2009, 07:51 -
Convert m2t to avi using AviSynth
By Landrew in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 47Last Post: 7th Aug 2008, 21:56