With ffmpeg 4.3.1, I want to use the "blackframe" filter.
This filter outputs text results in the console each time a black frame is detected in the input video.
ffmpeg -i Input.avi -filter_complex "blackframe" Output.mkv > [Parsed_blackframe_1 @ 0x7ff48c607a80] frame:206 pblack:100 ... I do not need to create the Output.mkv video, as console result is enough.
Unfortunately I am not able to find in the documentation how disable output video and still run the filter. From the main options section https://www.ffmpeg.org/ffmpeg.html#Main-options and examples elsewhere I tried :
-f null- or
-y NULoption in the-passoption example of the doc
But none of these commands works :
ffmpeg -i Video.avi -filter_complex "black frame" -f null > Filter blackframe has an unconnected output ffmpeg -i Video.avi -filter_complex "black frame" -y NUL > [NULL @ 0x7ffbe7026200] Unable to find a suitable output format for 'NUL' > NUL: Invalid argument How can I disable video output ?
Where is it explain in the documentation ?