S03e05 Ffmpeg - Outlander

Disclaimer: Only use FFmpeg on video files you own (DVD, Blu-ray, or purchased digital downloads stripped of DRM for personal backup). I am not condoning piracy; I am condoning smart archiving. The centerpiece of S03E05 is the print shop reunion (timestamp ~45:00–51:00 in most 1080p releases). Claire walks in, Jamie turns around, and time stops. You want a clip that starts when her hand touches the door and ends right after his whispered, “Ye look well, Claire.”

Let’s extract from 00:41:20 to 00:43:10 , but with a twist: add a 2-second fade-out so it doesn’t end abruptly. (Note: fading requires re-encoding, but for a short clip, it’s worth it.)

ffmpeg -i outlander_s03e05.mkv -c copy -map 0 -segment_time 300 -f segment -reset_timestamps 1 outlander_ep5_part%03d.mkv This yields: outlander_ep5_part001.mkv (0-5 min), part002.mkv (5-10 min), etc.

Because those tools re-encode your video, which destroys quality. FFmpeg can perform using copy codecs. That means the moors of Scotland look exactly as crisp as they do on your Blu-ray rip. FFmpeg also batch-processes, scales, and converts audio—perfect for turning that final emotional monologue into an MP3 for your commute.

ffmpeg -i outlander_s03e05.mkv -ss 00:18:30 -t 3 -vf "fps=12,scale=480:-1:flags=lanczos" -c:v libx264 -preset fast claire_eye_roll_temp.mp4 Generate a palette.

Extract the 3-second clip (timestamp 00:18:30 to 00:18:33 ).