When executing the following code:
ffmpeg -i input.mov -c:v libx264 -preset veryslow -pix_fmt yuv420p -filter_complex "drawtext=fontfile=font.ttf:fontcolor=white@1:fontsize=h/6:x=(w-text_w)/2:y=(h-text_h)/2:text='Henk de Vries'[watermark];[0][watermark]blend=all_mode=difference:all_opacity=1" output.mp4
The output file has a green overlay. When using other blend modes, results vary with some modes displaying correct colors and others green and pink.
I know that the input file has yuv420p colorspacing. I think the blend filter only supports rgba modes but I am not sure.
How can I avoid the green overlay and get the original colors? (e.i. what the original input video looks like)