From 5bdd6f8d8ad4f152308aa58839feaffb7611dcf5 Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Tue, 17 Apr 2018 09:56:22 -0400 Subject: [PATCH] adds check decoder errors recipe --- index.html | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 9277c95..ef62c12 100644 --- a/index.html +++ b/index.html @@ -1710,6 +1710,23 @@ + + + +
+

Check decoder errors

+

ffmpeg -i input_file -f null -

+

This decodes your video and prints any errors or found issues to the screen.

+
+
ffmpeg
starts the command
+
-i input_file
path, name and extension of the input file
+
-f null
Video is decoded with the null muxer. This allows video decoding without creating an output file.
+
-
FFmpeg syntax requires a specified output, and - is just a place holder. No file is actually created.
+
+ +
+ + @@ -1728,7 +1745,7 @@ - +