How to Use FFmpeg Monochrome Filter

This article provides a quick guide on how to convert color videos into black and white (monochrome) using FFmpeg. You will learn the most efficient commands to achieve this effect, including adjusting color saturation, forcing a grayscale pixel format, and using the color channel mixer for custom monochrome results.

The easiest way to make a video monochrome without changing the underlying pixel format is by setting the saturation to zero using the hue filter. This preserves compatibility with most video players while stripping all color.

Use the following command:

ffmpeg -i input.mp4 -vf "hue=s=0" output.mp4

Method 2: Using the Format Filter (Grayscale Conversion)

If you want to convert the video’s actual color space to grayscale, use the format filter. This method physically removes the color channels, which can significantly reduce the final file size.

Use the following command:

ffmpeg -i input.mp4 -vf "format=gray" output.mp4

Method 3: Using the Color Channel Mixer (Artistic Control)

For a highly customized monochrome look, you can use the colorchannelmixer filter. This allows you to control how much of the red, green, and blue channels contribute to the final grayscale image, similar to black-and-white lens filters in photography.

To create a balanced monochrome mix, use this command:

ffmpeg -i input.mp4 -vf "colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3" output.mp4