S04 Ffmpeg — Outlander
ffmpeg is your printing press. It is your Claire—taking the raw, wild herb of the source file and distilling it into a tonic that any device can drink. Use it wisely. Always keep the original rip (the "Lallybroch" master), and always check your CRF value, for the encoding is hard, but the playback is sweet.
Here is how you, a practical Highlander (or programmer), would use ffmpeg to process your digital "land grant."
ffmpeg -i outlander_s04e01.mkv -filter:v "crop=1920:800:0:140" -c:a copy -c:v libx264 bonnet_cut.mp4 Note: You lose the top and bottom 140 pixels. Goodbye, Jamie’s hat feathers. outlander s04 ffmpeg
ffmpeg -i outlander_s04e05_mountains.mkv -vf "zscale=transfer=linear,tonemap=hable,zscale=transfer=bt709,format=yuv420p" -c:v libx264 -crf 18 -preset slow fraser_ridge_sdr.mp4 Result: The blue ridge mountains actually look blue.
Sometimes the dialogue drifts (especially during the river crossing scene). To shift the audio 1.5 seconds forward to match the new encode: ffmpeg is your printing press
for episode in *.mkv; do ffmpeg -i "$episode" \ -vf "yadif=1,scale=1280:720" \ -c:v libx264 -crf 22 \ -c:a aac -b:a 128k \ -movflags +faststart \ "streaming_${episode%.mkv}.mp4" echo "Processed ${episode} — dinna fash yerself." done
The 4K HDR disc looks stunning on the big screen, but if you’re watching on a laptop in a tent (as Claire would), the colors are washed out. Map those bright highlights down to standard dynamic range: Always keep the original rip (the "Lallybroch" master),
Outlander S04: Fraser’s Ridge Cuts – A Guide to Processing Digital Land Grants with FFmpeg
