https://photos.app.goo.gl/1khQckPjUtKzbJiD6
thank you

tiwaz wrote:hi Javascript sorry im new. i know how many w and down . and all png have a time code thank you
@echo off
setlocal ENABLEDELAYEDEXPANSION
pushd "%~dp0"
cls
::____________________________
::
set WIDTH=9
set HEIGHT=4
::____________________________
::
set COUNT=0
set PICTURE=1
for /f "useback delims=" %%a in (`dir /b /o:d *.jpg;*.png`) DO call :AXI "%%a"
goto :EOF
:AXI
set /a Xco= 1 + (%COUNT% %% %WIDTH%)
set /a Yco= 1 + (%COUNT% / %WIDTH%)
rename %1 "Picture%Picture%_%Yco%_%Xco%.jpg"
set /a COUNT+=1
if "%Yco%_%Xco%" == "%HEIGHT%_%WIDTH%" (
echo DONE with Picture %PICTURE%
set /a PICTURE+=1
set COUNT=0
)
goto :EOF