From 33582ee6ea713071b938e5a89b16e86bf93c71c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorena=20A=20Ram=C3=ADrez-L=C3=B3pez?= Date: Sun, 31 May 2020 11:53:48 -0400 Subject: [PATCH] Another udpate Took out fades in and out the first and last second of video as it's no longer hard-coded for that. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 7101cd0..78d04a2 100644 --- a/index.html +++ b/index.html @@ -734,7 +734,7 @@
Fade both video and audio streams

ffmpeg -i input_file -filter:v "fade=in:st=IN_POINT:d=DURATION, fade=out:st=OUT_POINT:d=DURATION" -filter:a "afade=in:st=OUT_POINT:d=DURATION, afade=out:st=IN_POINT:d=DURATION" -c:v libx264 -c:a aac output_file

-

This command fades in and out the first and last second on a video. Change IN_POINT, OUT_POINT, DURATION to the time in seconds (expressed as integers) you want.

+

This command fades your video in and out. Change IN_POINT, OUT_POINT, and DURATION to the time in seconds (expressed as integers).

ffmpeg
starts the command
-i input_file
path, name and extension of the input file