Outlander S03 Ffmpeg | 2024 |

ffmpeg -i outlander_s03e01.mkv -vf "subtitles=subs.srt" -c:a copy outlander_s03e01_hardsub.mp4 (if subtitles are in the file):

Get-ChildItem "outlander_s03e*.mkv" | ForEach-Object ffmpeg -i $_.Name -c:v libx265 -crf 23 -c:a aac -b:a 96k "$($_.BaseName)_mobile.mp4"

for f in outlander_s03e*.mkv; do ffmpeg -i "$f" -c:v libx265 -crf 23 -c:a aac -b:a 96k "$f%.mkv_mobile.mp4" done outlander s03 ffmpeg

December 2024

ffmpeg -i outlander_s03e01.mkv -vf "subtitles=outlander_s03e01.mkv:si=0" -c:a copy burned.mp4 Change si=0 to the correct subtitle stream index. Notice dialogue drifting? Check the audio delay with: ffmpeg -i outlander_s03e01

ffmpeg -i outlander_s03e01.mkv -c copy -map 0 outlander_s03e01_compressed.mkv Copies video, audio, and subtitles as-is but rewrites the container. This can reduce overhead by 5–15% if the original was poorly muxed.

First, extract subtitles from your MKV:

ffmpeg -i outlander_s03e01.mkv -c:v libx264 -crf 18 -preset medium -c:a copy outlander_s03e01_plex.mkv Season 3 has moments in Scottish Gaelic and French. To permanently add subtitles (hardsub) when your player doesn’t support soft subs: