ffmpeg -i "Outlander.S02E01.mkv" -vf "crop=1920:800:0:140" -c:v libx264 -crf 20 "cropped.mp4"

Since "S02E01" refers to a specific copyrighted TV episode, I cannot provide a download link or a file. However, if you possess the video file and are looking to edit, convert, or fix it using FFmpeg, the following guide provides the most common commands for this specific use case.

Outlander episodes often have a "Previously on..." segment. If you want to cut the first 2 minutes and 15 seconds off the file:

If you are organizing your media library (Plex/Jellyfin) and need a preview image:

: Copies the original data streams directly to the new file, making the process nearly instant and preserving original quality. 2. Extracting Subtitles or Audio

ffmpeg -i "Outlander.S02E01.mkv" -map 0:s:0 "Outlander.S02E01.srt"

List the streams to find the subtitle track number:

Extract it:

(This takes a screenshot at the 10-minute mark.)

ffmpeg -i "Outlander.S02E01.mkv" -c:v copy -c:a copy "Outlander.S02E01.mp4"

Run this to inspect your source file:

ffmpeg -i "Outlander.S02E01.mkv" -c copy "Outlander.S02E01.mp4"

1.1× faster (pitch preserved):