Invert colors of a video using FFMPEG

5

3

Is it possible to invert colors of a video using FFMPEG?

It seemed to me from this answer that it might be possible but I can't figure out the correct filter.

laggingreflex

Posted 2018-07-04T00:19:01.823

Reputation: 3 498

Answers

7

The lut filter family has a bespoke mode for doing this, when you don't know whether the input is YUV or RGB.

ffmpeg -i in -vf negate out

Gyan

Posted 2018-07-04T00:19:01.823

Reputation: 21 016

2

You can use the lutrgb or lutyuv video filter:

ffmpeg -i input_file -vf lutrgb="r=negval:g=negval:b=negval" output_file

or:

ffmpeg -i input_file -vf lutyuv="y=negval:u=negval:v=negval" output_file

Source: FFmpeg Filters Documentation

Mike Fitzpatrick

Posted 2018-07-04T00:19:01.823

Reputation: 15 062