I am trying to join/concatenate multiple audio files into 1 auto file. I created a simple batch file using the copy command to do this however when processing the files it goes in the order audio1,audio10,etc instead of audio1,audio2,etc
I have searched on here but people are using more complex joining methods and I can't extrapolate the code section that would help process the files in the order I need.
Can someone help this noob?
@echo off
echo What do you want to name the new merged file?
set /p input=""
echo %input%
copy /b *.mp3 %input%.mp3
move %input%.mp3 ./Merged
del /f *.mp3
pause