현재 내 mkv 라이브러리를 mp4로 변환하려고합니다 (Iphone 6 plus)
mkv에서 mp4 로의 변환을 올바르게 수행했지만 자막 부분 (SRT)이 없습니다.
내 코드는 다음과 같습니다.
dir/b/s *.mkv >mkvlist.txt ///////// this gets a list of all the mkv files on the directory
for /F "delims=;" %%F in (mkvlist.txt) do ffmpeg.exe -i "%%F" -format mp4 -vcodec copy -acodec aac -strict -2 -sn "%%~dF%%~pF%%~nF.mp4" ///////////// this makes the conversion
del mkvlist.txt ////// this deletes the txt file
스크립에 자막을 포함하고 싶지만 자막의 올바른 이름을 스크립트에 삽입하는 데 문제가 있습니다 (여러 변환 일괄 처리이므로).