У меня есть файл MKV с 2 аудио и 4 потоками субтитров. 3-й и 4-й поток субтитров содержал ошибки, поэтому я их извлек и исправил, но я не знаю, как их заменить в файле mkv. я пробовал ffmpeg.exe -i .\video.mkv -map 0:0 -map 0:1 -map 0:2 -map 0:3 -map 0:4 -i sub1.srt -i sub2.srt out.mkv
но это выдает мне ошибку:
Option map (set input stream mapping) cannot be applied to input url sub2.srt -- you are trying to apply an input option to an output file or vice versa. Move this option before the file it belongs to.
Error parsing options for input file sub2.srt.
Error opening input files: Invalid argument
Может кто-нибудь сказать мне правильную команду?