Enough was enough. I bought the digital copy, but it came as a 12GB MKV file with DTS audio that my phone couldn’t play. I needed to convert it, clip a few key scenes (for a fan edit, obviously), and sync the audio without losing quality.
FFmpeg fixed it in seconds:
I am the second kind.
ffmpeg -i Outlander.S02E05.mkv -itsoffset 0.5 -i Outlander.S02E05.mkv -map 0:v -map 1:a -c copy fixed_audio.mkv For the non-coders: that says "take the video from the first file, take the audio from the second file but delay it by half a second, and stitch them together." No quality loss. Jamie would approve of this pragmatic violence. My phone doesn’t speak DTS. FFmpeg speaks everything.
Use FFmpeg to create a loop of Claire rolling her eyes at 18th-century hygiene. You know you want to. outlander s02e05 ffmpeg
Last night, I re-watched Outlander Season 2, Episode 5: "Untimely Resurrection." If you’ll recall, this is the episode where Jamie Fraser tries to change history at the Battle of Prestonpans, Claire wrestles with the ethics of foreknowledge, and—most critically—my streaming service decided to buffer right as Dougal MacKenzie gave a rousing speech.
Share your best flags (or your worst audio desync horror stories) in the comments. Droughtlander is hard enough without bad video codecs. Convert wisely. Enough was enough
ffmpeg -i Outlander.S02E05.mkv -ss 00:23:15 -to 00:24:00 -c copy dougal_speech.mp4 -ss is the start time, -to is the end time. The magic is -c copy , which tells FFmpeg to not re-encode the video. It just snips. It’s lossless. It’s instant. It’s like Claire jumping through the stones—zero lag. 2. Fixing the Audio Sync (The Claire Problem) In my downloaded version, the audio was 0.5 seconds behind the video. Nothing ruins a dramatic "Mark me!" like lips moving after the sound.