目前正在尝试将我的 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
Run Code Online (Sandbox Code Playgroud)
我想在脚本中包含字幕,但我无法将正确的字幕名称插入脚本(因为这是一个多转换批次)。