Thread: AviSynth Q&A
View Single Post
Old 26th December 2017, 07:25   #107  |  Link
ilko
Registered User
 
Join Date: Nov 2016
Posts: 12
Q : is there a way to enumerate variables in avs ?

I'm trying to do something similar to the following batch script :
Code:
set /a count=1
set var=video%count%
echo the resulting var is "video1"

set /a count+=1
echo we add 1 to the initial count so it's now 2
echo then we set the var gain

set var=video%count%
echo the var is now "video2"

pause
__________________
AviSynth+ Fansub Edition

Last edited by ilko; 26th December 2017 at 07:27.
ilko is offline   Reply With Quote