Keep all audio tracks (English, commentary) and subtitles but strip unnecessary metadata.

If you are using ffmpeg to encode, archive, or quality-check , you are dealing with one of the most visually complex shows of the last decade. While the narrative is a sweeping historical romance, from a technical standpoint, S01E01 ("Sassenach") through the finale ("To Ransom a Man's Left Eye") offers a distinct set of challenges and rewards for the discerning encoder.

| Scene Type | FFmpeg Challenge | Solution | |------------|------------------|----------| | Tartan fabrics (moire patterns) | Banding artifacts | Use -crf 19 + -pix_fmt yuv420p10le | | Candlelit interiors (Ep. 1, 11) | Blocky shadows | Add -x265-params "no-sao=1" | | Gaelic subtitles | Missing forced subs | -c:s copy preserves PGS |

ffmpeg -ss 00:00:00 -i Outlander_S01E01.mp4 -t 00:03:00 -c copy Sassenach_Intro.mp4 Use code with caution. Copied to clipboard Key Considerations for "Outlander" Files

Some rips have a 250ms delay due to the dual timeline editing. Add an audio delay:

Just as a two-pass encode takes its time to allocate bits where they are needed, Season 1 takes its time. It is a slow burn.

ffmpeg -i "S01E01.mkv" -ss 00:01:30 -to 00:03:15 -c copy "outlander_theme_s1.m4a"

Always test on (Sassenach) – it has the widest dynamic range (daylight castle → night firelight). If that looks good, the whole season will.

ffmpeg -i "Source.dvd" -c:v libx265 -crf 18 -preset slow -tune grain -c:a flac -metadata:s "Romance=High" -metadata:s "History=Brutal" "Outlander_S01.mkv"

ffmpeg -i "bad_sync.mkv" -c copy -af "adelay=250|250" "fixed_ep8.mkv"

Enjoying my articles?

Sign up to get new content delivered straight to your inbox.

Please enable JavaScript in your browser to complete this form.
Name