for f in *.mkv; do ffmpeg -i "$f" -c:v libx264 -preset ultrafast -crf 23 -vf "scale=854:480" -c:a aac -b:a 128k "proxy_${f%.mkv}.mp4" done Now you can edit proxies, then relink to the 4K originals in your NLE. Clan MacKenzie would approve of such efficiency. Some S08 web-dl copies drift audio after 40 minutes. Fix without re-encoding video:
Here’s the magic command to convert a 30-second Claire & Jamie argument into a lossless or near-lossless editing proxy: outlander s08 ffmpeg
ffmpeg -i outlander_s08e05.mkv -c:v hevc_videotoolbox -b:v 5000k -c:a aac -movflags +faststart output_fast.mp4 That’s 10x faster than software encoding—perfect for last-minute panel submissions for fan conventions. FFmpeg gives you frame-accurate control, from the misty shots of the North Carolina mountains to the flicker of a surgery lantern. Season 8 is the end of an era—but with FFmpeg, your fan tributes, analysis videos, and reaction memes will live forever in pristine quality. for f in *
But here’s the problem: modern 4K streaming files are massive, unwieldy, and often locked in codecs that video editors hate. Enter —the silent, kilt-wearing warrior of video processing. Fix without re-encoding video: Here’s the magic command
ffmpeg -i outlander_s08e03.mkv -ss 00:08:30 -t 60 -q:a 0 -map a claire_speech.mp3 Or for lossless preservation (WAV):
Now go. Protect that footage. And may the Fraser’s Ridge lighting always be in your favor. Need a specific FFmpeg filter to replicate Outlander ’s vintage film look? Try -vf "eq=brightness=0.05:contrast=1.1:saturation=1.05"
Assume you have an outlander_s08e01.mkv (from a MakeMKV rip) or an .mp4 screen recording from a streaming service’s offline download (where permitted). Raw footage is often in H.265 (HEVC) at 4K. Most editing software (Premiere, DaVinci Resolve, Final Cut) prefers ProRes or H.264 in a friendly container.