This commit is contained in:
ChuXun
2025-10-11 18:15:20 +08:00
parent 98c6e4b11a
commit cf8f4c5c3a
283 changed files with 105716 additions and 3 deletions

14
SrtToTxt.bat Normal file
View File

@@ -0,0 +1,14 @@
@echo off
setlocal enabledelayedexpansion
echo Changing .srt files to .txt in the current directory...
for %%f in (*.srt) do (
ren "%%f" "%%~nf.txt"
echo Renamed: "%%f" to "%%~nf.txt"
)
echo.
echo All .srt files have been processed.
endlocal
pause