- Joined
- Jul 14, 2014
- Messages
- 14
- Reaction score
- 2
- First Language
- Dutch
- Primarily Uses
- RMMZ
You might use mmpeg, along with this bat file:
@echo off
call :treeProcess
goto :eof
:treeProcess
rem Do whatever you want here over the files of this subdir, for example:
for %%f in (*.ogg) do (
If Not Exist "%%~nf.m4a" (
"ffmpeg.exe" -i "%%f" "%%~nf.m4a"
)
)
for /D %%d in (*) do (
cd %%d
call :treeProcess
cd ..
)
exit /b