junglemike
12th July 2010, 15:41
HI fellas. Even though this is not related to avisynth directly, someone hopefully can help me.
I'm using this command to auto generate avs scripts for all the files in specific directory:
for %f in (*.avi) do echo
LoadPlugin ("c:\Program Files\AviSynth 2.5\plugins\undot.dll")
AVISource("P:\Camera_vids\%f",false)
lanczosresize(512,384)
undot() > "p:\scripts\%f.avs"
But what is I have some more than one folder, (say , a complete folder hierarchy 3 levels deep), and I would like to generate scripts for all specific (.avi) files in all the folders.
Any Idea how to do this?
I'm using this command to auto generate avs scripts for all the files in specific directory:
for %f in (*.avi) do echo
LoadPlugin ("c:\Program Files\AviSynth 2.5\plugins\undot.dll")
AVISource("P:\Camera_vids\%f",false)
lanczosresize(512,384)
undot() > "p:\scripts\%f.avs"
But what is I have some more than one folder, (say , a complete folder hierarchy 3 levels deep), and I would like to generate scripts for all specific (.avi) files in all the folders.
Any Idea how to do this?