I would like to run executable file using the yuv files as an input in a specific folder using batch script. However, the above code that I am using run only a time and then stop. Could anyone help me?
> SET /A COUNT=1
> for /r "F:\coding\Wetlands_1920x1080p\" %%v in (*.yuv) do (
> TAppEncoder.exe -c EBU.cfg -f 30 -i "%%v" -wdt 1920 -hgt 1080 -o %COUNT%.yuv >%COUNT%.txt
> SET /A COUNT+=1
> )