You look him in the eye. “Aye. And I’ll do it with a single line of bash.”
Season 4 is shot in glorious 2.00:1 aspect ratio. Your TV is 16:9. To remove the cinematic letterboxing (just like Bonnet removes your possessions):
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. outlander s04 ffmpeg
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.
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.) You look him in the eye
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.
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 Your TV is 16:9
Outlander S04: Fraser’s Ridge Cuts – A Guide to Processing Digital Land Grants with FFmpeg