Quote:
Originally Posted by tshering
I am seeing the same when I try to convert the Glo HD raw image files. I have no idea how to find the correct values for ffmpeg.
The next thing I was going to propose was using pngshow.
|
For Kobo Glo HD you can use these settings for ffmpeg. Have a look at attached images too as an example.
raw -> png
Code:
ffmpeg -f rawvideo -pix_fmt rgb565 -s 1088x1440 -i <(head -c 3133440 "alyssum-menu.raw") -y "alyssum-menu.png" < /dev/null
png -> raw
Code:
ffmpeg -i alyssum-menu.png -f rawvideo -pix_fmt rgb565 -s 1088x1440 -y alyssum-menu-new.raw < /dev/null