I am trying to convert a sequence of png images to a video. Unfortunately the video though playing exactly what i want alters the colors.
The command used to convert the images:
ffmpeg -framerate 30 -pattern_type glob -i '*.png' -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p out.mp4
The colors as displayed in the video.
How can I circumvent this altering of the colors?
EDIT I found the answer as posted below.