Outlander S05e01 Ffmpeg Review

Let me know if you want a version with S05E01 spoilers tagged (yes, that opening scene is gorgeous on a re-encode).

Just used ffmpeg to tame my Outlander S05E01 file. Sharing the commands in case they save someone else a headache.

— A Fraser-adjacent nerd with a terminal outlander s05e01 ffmpeg

ffmpeg -i Outlander.S05E01.mkv -vn -acodec mp3 -q:a 4 jamie_speech.mp3

Here’s a draft for a social media or forum post about using ffmpeg to process Outlander S05E01. You can adjust the tone (technical, funny, or casual) as needed. Outlander S05E01 + ffmpeg: quick post for the command-line clan 🏴󠁧󠁢󠁳󠁣󠁴󠁿🎞️ Let me know if you want a version

ffmpeg -i Outlander.S05E01.mkv -c:v libx264 -c:a aac -movflags +faststart outlander_s05e01.mp4

ffmpeg -i Outlander.S05E01.mkv -c:v libx265 -crf 28 -c:a aac -b:a 96k smaller_outlander.mp4 Always test on a 30-second sample first ( -t 30 ). No need to re-encode everything twice. — A Fraser-adjacent nerd with a terminal ffmpeg

ffmpeg -i Outlander.S05E01.mkv -ss 00:15:30 -to 00:17:45 -c copy trimmed.mkv

Top