From c3811b266d3b3c10fa724a2ca145649b968ff479 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Mon, 20 Mar 2023 16:44:56 -0700 Subject: [PATCH] Add link to creating clip from video --- homelab/docs/ffmpeg Notes.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/homelab/docs/ffmpeg Notes.md b/homelab/docs/ffmpeg Notes.md index 9e549603..a9764941 100644 --- a/homelab/docs/ffmpeg Notes.md +++ b/homelab/docs/ffmpeg Notes.md @@ -588,4 +588,6 @@ Alternate group : 1 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"` -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. \ No newline at end of file +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. + +Reference: [Shortstack.io](https://shotstack.io/learn/use-ffmpeg-to-trim-video/) \ No newline at end of file