I tried to extract frames from 10 bit video using ffmpeg:
ffmpeg -i 10-bit-video.mp4 -pix_fmt rgb16be test_%03d.png
and that's 16-bit png with max value of 65535
how to get corresponding 10-bit RGB value (0-1023) from extracted 16-bit PNG?
I tried to extract frames from 10 bit video using ffmpeg:
ffmpeg -i 10-bit-video.mp4 -pix_fmt rgb16be test_%03d.png
and that's 16-bit png with max value of 65535
how to get corresponding 10-bit RGB value (0-1023) from extracted 16-bit PNG?