ffmpeg
Verified for v7.1 LTS
FFmpeg Command: Trim Video
An engineer would use this ffmpeg command to extract a specific segment from a video file, efficiently trimming it without re-encoding, such as when creating a highlight reel from a longer video. Exact CLI syntax to trim video using FFmpeg.
When to use this: An engineer would use this ffmpeg command to extract a specific segment from a video file, efficiently trimming it without re-encoding, such as when creating a highlight reel from a longer video.
Command Syntax
ffmpeg -i <path/to/input_video.mp4> -ss {mm:ss} -to {mm2:ss2} -c copy <path/to/output_video.mp4> ffmpeg -i <path/to/input_video.mp4> -ss `{mm:ss`} -to `{mm2:ss2`} -c copy <path/to/output_video.mp4> Command Breakdown
-i- Input
- Sets the input file or stream for FFmpeg to read.
-ss- Start Time
- Seeks to the specified timestamp before processing.
-to- End Time
- Stops processing at the specified timestamp.
-c- Codec
- Selects the codec used for an output stream.
FAQ
Purpose: Exact syntax to trim video using FFmpeg.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
FFmpeg Command: Combine Images Into Video Or Gif
ffmpeg -i <path/to/frame_%d.jpg> -f image2 <video.mpg|video.gif> FFmpeg Command: Convert Avi To Mp4 ffmpeg -i <path/to/input_video>.avi -c:a aac -b:a 128k -c:v libx264 -crf 23 <path/to/output_video>.mp4 FFmpeg Command: Convert Mp4 To Vp9 ffmpeg -i <path/to/input_video>.mp4 -c:v libvpx-vp9 -crf <30> -b:v 0 -c:a libopus -vbr on -threads <number_of_threads> <path/to/output_video>.webm FFmpeg Command: Extract Sound From Video ffmpeg -i <path/to/video.mp4> -vn <path/to/sound.mp3> FFmpeg Command: Transcode Flac To Cd Format ffmpeg -i <path/to/input_audio.flac> -ar 44100 -sample_fmt s16 <path/to/output_audio.wav>