Here is how you, a practical Highlander (or programmer), would use ffmpeg to process your digital "land grant."
ffmpeg -i outlander_s04e07.mkv -itsoffset 1.5 -i outlander_s04e07.mkv -map 0:v -map 1:a -c copy crossing_delayed.mkv You only want the scene where Ian chooses to stay with the Mohawk. From 00:45:30 to 00:52:10:
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 outlander s04 ffmpeg
ffmpeg -i brianna_arrives.mkv -filter:v "minterpolate=fps=60:mi_mode=mci" -c:v libx264 -crf 20 time_travel_smooth.mp4 Warning: Makes Roger Mac’s slow-motion despair look incredibly fluid.
You’ve just ripped your Outlander Season 4 Blu-ray. You have 13 episodes of muddy colonial roads, fiery standing stones, and Roger Mac’s anguished face at 50 gigabytes each. The raw .mkv file from MakeMKV is beautiful but unwieldy. You need to tame it. Here is how you, a practical Highlander (or
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.
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. You have 13 episodes of muddy colonial roads,
ffmpeg -i ian_stays.mkv -ss 00:45:30 -to 00:52:10 -c copy ian_mohawk_chapter.mkv (No re-encoding. Fast as a tomahawk.)