Since you said "prepare a paper," I will assume you want a (a "paper" in the sense of a reference document) for using ffmpeg on that specific episode file.
Here is a ready-to-use reference sheet. Assumed input file: Outlander.S04E13.Man.of.Worth.mkv (or .mp4) FFmpeg version: 6.0 or newer. 1. Basic Info Inspection ffmpeg -i Outlander.S04E13.Man.of.Worth.mkv or more readable:
ffprobe -hide_banner Outlander.S04E13.Man.of.Worth.mkv Change container without re-encoding (fast, no quality loss):
ffmpeg -i Outlander.S04E13.Man.of.Worth.mkv -vn -acodec mp3 -ab 192k Outlander.S04E13.mp3 Get duration first:
ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 Outlander.S04E13.Man.of.Worth.mkv Then extract last 5 minutes (assuming total duration 2700 seconds):