-c copy to cut without re-encoding, which is instant.) To Convert to MP4 (for compatibility): bash ffmpeg -i "Abbott.Elementary.S02E02.mkv" -c:v libx264 -crf 23 -c:a aac output.mp4 Use code with caution. Copied to clipboard To Extract Only the Audio: bash ffmpeg -i "Abbott.Elementary.S02E02.mkv" -q:a 0 -map a output_audio.mp3 Use code with caution. Copied to clipboard To Resize for Mobile/Social Media (720p): bash ffmpeg -i "Abbott.Elementary.S02E02.mkv" -vf scale=-

Media centers rely on specific naming conventions to scrape metadata (plot summaries, thumbnails, actor info) correctly.

Sitcoms like Abbott Elementary often have high static backgrounds and dialogue-heavy audio, which compresses very efficiently. If the file is too large, you can reduce the file size significantly using H.265 (HEVC).

This is the magic command. It copies the video and audio tracks directly without re-encoding (takes 1 second and zero quality loss).