Topic: RGB565 for Custom Splash Screens

Hi, just thought some people here might find the following useful with the new OE builds to get custom splash screens.

Converting from RGB565 (to PNG)

ffmpeg -vcodec rawvideo -f rawvideo -pix_fmt rgb565 -s 320x240 -i image.raw -f image2 -vcodec png image.png
Converting to RGB565 (from PNG)

ffmpeg -vcodec png -i image.png -vcodec rawvideo -f rawvideo -pix_fmt rgb565 image.raw