本帖最后由 77七 于 2023-7-26 09:46 编辑
| @echo off | | chcp 65001 >nul | | | | for /f "tokens=1* delims=_" %%a in ('dir /b /ad *_En') do ( | | pushd "%%a_%%b" | | for /f "delims=" %%i in ('dir /b /a-d *.mp3') do ( | | if exist "%~dp0%%a_Ch\%%i" ( | | md "%~dp0%%a" 2>nul | | if not exist "%~dp0%%a\%%i" ( | | "%~dp0ffmpeg.exe" -i "concat:%%~fi|%~dp0%%a_Ch\%%i" -acodec copy "%~dp0%%a\%%i" | | ) | | ) | | ) | | popd | | ) | | pauseCOPY |
|