Extract a frame at the 10-minute mark: ffmpeg -ss 00:10:00 -i input.mp4 -frames:v 1 screenshot.jpg .
This command scales the video to 1280x720, and converts both video and audio to formats commonly supported by mobile devices. outlander s01e13 ffmpeg
ffmpeg -i input.mp4 -vf scale=-1:720 -c:v libx264 -crf 20 output_720p.mp4 . ffmpeg Documentation Extract a frame at the 10-minute mark: ffmpeg
often includes multiple audio tracks (e.g., commentary) or subtitles. outlander s01e13 ffmpeg
ffmpeg -i input.mp4 -an -c:v copy output_silent.mp4 .