diff --git a/index.html b/index.html index 036e8c5..c71f85a 100644 --- a/index.html +++ b/index.html @@ -809,7 +809,7 @@
-i input01 -i input02
Designates the files to use for inputs one and two respectively
-filter_complex
Lets ffmpeg know we will be using a complex filter (this must be used for multiple inputs)
[0:v:0]tblend=all_mode=difference128[a]
Applies the tblend filter (with the settings all_mode and difference128) to the first video stream from the first input and assigns the result to the output [a]
-
[1:v:0]tblend=all_mode=difference128[a]
Applies the tblend filter (with the settings all_mode and difference128) to the first video stream from the second input and assigns the result to the output [b]
+
[1:v:0]tblend=all_mode=difference128[b]
Applies the tblend filter (with the settings all_mode and difference128) to the first video stream from the second input and assigns the result to the output [b]
[a][b]hstack[out]
Takes the outputs from the previous steps ([a] and [b] and uses the hstack (horizontal stack) filter on them to create the side by side output. This output is then named [out])
-map [out]
Maps the output of the filter chain
-f nut
Sets the format for the output video stream to Nut