ffmpeg -i outlander_s03e01.mkv -vf "subtitles=outlander_s03e01.mkv:si=0" -c:a copy burned.mp4 Change si=0 to the correct subtitle stream index. Notice dialogue drifting? Check the audio delay with:
ffmpeg -i outlander_s03e04.mkv -itsoffset 0.2 -i outlander_s03e04.mkv -map 1:v -map 0:a -c copy fixed_audio.mkv Or shift audio earlier by -0.2 seconds: outlander s03 ffmpeg
First, extract subtitles from your MKV:
ffmpeg -i outlander_s03e01.mkv -c copy -map 0 outlander_s03e01_compressed.mkv Copies video, audio, and subtitles as-is but rewrites the container. This can reduce overhead by 5–15% if the original was poorly muxed. ffmpeg -i outlander_s03e01
ffprobe -v error -show_entries stream=codec_name,start_time outlander_s03e04.mkv If audio is 0.2 seconds behind, delay it: outlander s03 ffmpeg
Drop it in the comments below.