Outlander S03e05 Ffmpeg [extra | Quality]
ffmpeg -i claire_eye_roll_temp.mp4 -i palette.png -filter_complex "fps=12,scale=480:-1[x];[x][1:v]paletteuse" claire_eyeroll.gif Result: A perfectly looped, smooth, 480px-wide GIF ready for reaction threads. Bear McCreary’s score swells when Claire plays the record. To get a lossless audio file (FLAC) of just that 45-second segment:
Enjoyed this? Check out my other posts: “Using FFmpeg to Remove Rain from Your Outlander Screen Recordings” and “Extracting Gaelic Audio Tracks for Language Learning.”
By: A Cinephile with a Command Line
Assuming you have a file named outlander_s03e05.mkv (or .mp4), here is the command:
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.” outlander s03e05 ffmpeg
But DRM, proprietary video formats, and editing software bloatware stand in your way. Enter : the open-source, command-line powerhouse that lets you do anything with your video files—legally, efficiently, and precisely.
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 claire_eye_roll_temp
ffmpeg -i outlander_s03e05.mkv -ss 00:36:20 -t 45 -vn -b:a 320k find_you.mp3 Now you can cry to Jamie’s ghost while driving. Maybe you want to split the whole episode into chapter-like 5-minute chunks for easy sharing on a Plex server. Here’s a one-liner that creates 5-minute segments with timestamps: