現在、私の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
字幕をスクリプトに含めたいのですが、スクリプトに字幕の正しい名前を挿入できません(これは複数の変換バッチであるため)。