กำลังพยายามแปลงไลบรารี 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
ฉันต้องการรวมคำบรรยายลงใน scrip แต่ฉันมีปัญหาในการใส่ชื่อที่ถูกต้องสำหรับคำบรรยายลงในสคริปต์ (เนื่องจากนี่เป็นชุดการแปลงหลายชุด)