To check the effects of additional compression on a video file, I found this useful ffmpeg trick:
ffmpeg -i orig.mkv -i compressed.mkv -filter_complex "blend=all_mode=difference" -c:v libx264 -crf 18 -c:a copy diff.mkv
By default, however, the difference between the two video streams is done in a YUV colorspace instead of an RGB colorspace. This results in a medium shade of green where there's no difference in the two video streams.
The recommendation I've found so far for RGB instead is to use format=gbrp... but I have no idea, syntactically speaking, where or how to apply that advice.
I'm also not sure if a lack of difference would then show up as black, rather than medium gray. I'd prefer gray so that there's room to go brighter or dimmer, rather than only showing positive differences and clipping negative differences as blacker-than-black.
Can someone show me what the command would look like with format=gbrp properly applied?