I'm wondering if there is a way that I can run a bunch of files thru Virtual Dub using avisynth?
Here is the code that I use:
Load_Stdcall_Plugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll")
AVISource("C:\Documents and Settings\bsuska\Desktop\global relief for homepage.avi")
Yadif(mode=0,order=0) #bottom field first
Crop(8,12,-8,-12)
LanczosResize(224,168)
In Virtual Dub it seems like I can only process one video at a time.
Thanks.
+ Reply to Thread
Results 1 to 9 of 9
-
-
1 script = 1 video
*** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE -
What about job control in VirtualDub, you will still have to add the jobs one at a time, but it will then run them as a batch?
"Just another sheep boy, duck call, swan
song, idiot son of donkey kong - Julian Cope" -
No, you open the avs script as a normal file, and do the setup for saving the file. Job control is accessed when you use Save as AVI, there is a check box at the bottom of the dialog which enables you to save to the job queue. Once you've set up all of your scripts, you use job control to run them all.
"Just another sheep boy, duck call, swan
song, idiot son of donkey kong - Julian Cope" -
dude is funny somewhat ^^
do like safesurfer say
your script contain a mistake imo
assuming your .avi is interlaced bottom field first , ntsc 29.970 and encoded in the yv12 or yuy2 color space, you should write:
Load_Stdcall_Plugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll")
v=avisource("C:\Documents and Settings\bsuska\Desktop\global relief for homepage.avi")
a=wavsource("C:\Documents and Settings\bsuska\Desktop\global relief for homepage.wav")
audiodub(v,a)
assumefps(29.970,true)
AssumeBFF()
Yadif(order=0, mode=0)
Crop(8,12,-8,-12)
LanczosResize(224,168)*** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE -
Originally Posted by themaster1
-
I guess your code change confuses me. Usually the file that I'm transcoding is a Huff avi that has sound and video all in one avi.
Similar Threads
-
New AVISynth UI
By tin2tin in forum Latest Video NewsReplies: 23Last Post: 19th Jan 2012, 01:53 -
avisynth
By sportflyer in forum Newbie / General discussionsReplies: 1Last Post: 16th Feb 2010, 04:36 -
Avisynth Deinterlace Help
By pureimpure in forum Video ConversionReplies: 12Last Post: 6th Sep 2009, 08:23 -
AVIsynth help!
By helper in forum Newbie / General discussionsReplies: 11Last Post: 15th Oct 2008, 03:35 -
Avisynth 3.0
By nbi in forum LinuxReplies: 1Last Post: 30th Oct 2007, 16:50