View Full Version : Using avisynth on multiple files efficiently?
TNHitokiRi
19th July 2007, 06:26
I have a folder full on DV video that is interlaced, with about 300 clips.
Does anyone know of a way to use my desired deinterlace script for all of these files without creating a new .avs for each individual clip?
Blue_MiSfit
19th July 2007, 06:41
Not really. I wrote a program that can make a batch file for you.. It's nothing special though :)
Dark Shikari
19th July 2007, 11:09
Just run a bash script that takes all input files and makes a .avs file of the same name for each one :p
nullstuff
19th July 2007, 12:25
...or a batch script like:
@echo off
for %%a in (*.*) do call :make "%%a" "%%~na"
goto :eof
:make
echo avisource(%1,false) > %2.avs
echo bob() >> %2.avs
;)
-- nullstuff
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.