I am the second kind.
Enter . The "Mark me, this is inefficient" Moment You know how Claire is always frustrated by 18th-century medicine? That’s how I feel about GUI video editors. They crash, they watermark your output, and they take forty minutes to export a 30-second clip.
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. outlander s02e05 ffmpeg
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.
If you’ve been avoiding the command line because you think it’s "too technical," remember: Jamie Fraser couldn’t read at 20, and he turned out fine. You can learn ffmpeg -i . I am the second kind
Here’s how I used FFmpeg to tame my Outlander episode. I wanted a 45-second clip of Dougal rallying the troops. With iMovie? Painful. With FFmpeg? One line:
FFmpeg fixed it in seconds:
Share your best flags (or your worst audio desync horror stories) in the comments. Droughtlander is hard enough without bad video codecs. Convert wisely.