From 6368e9e32bf56d750b7d6ee0a708c24aecc65485 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Thu, 6 Apr 2023 23:03:39 -0700 Subject: [PATCH] Update ffmpeg for better clip procedure --- homelab/docs/ffmpeg Notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homelab/docs/ffmpeg Notes.md b/homelab/docs/ffmpeg Notes.md index 5366de24..bb8c0be0 100644 --- a/homelab/docs/ffmpeg Notes.md +++ b/homelab/docs/ffmpeg Notes.md @@ -606,7 +606,7 @@ Alternate group : 1 # Create a Clip from a Video You can create a clip from a video file without reencoding given a single time span. -`ffmpeg -i "$input" -ss 00:05:20 -to 00:15:30 -c:v copy -c:a copy "$output"` +`ffmpeg -ss 00:05:20 -i "$input" -to 00:15:30 -c:v copy -c:a copy "$output"` The time to perform this operation is based on the *size of the input file up to the starting timestamp*, not the length of the clip.