mjpeg
mjpeg copied to clipboard
how big images can be?
The following limit applies to individual frames:
-
width
isint32
(so it must be <= 2147483647) -
height
isint32
(so it must be <= 2147483647) - mjpeg file limit is 4GB, so obviously a single frame also cannot be bigger than 4GB
Good job, How could I create a video stream from images? Is this even possible?
Pe 26 iul. 2021, la 22:54, András Belicza @.***> a scris:
The following limit applies to individual frames:
width is int32 height is int32 mjpeg file limit is 4GB, so obviously a single frame also cannot be bigger than 4GB — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.
The MJPEG format contains header data which can be calculated only when all the frames are added, so you should choose another format for that, or just simply transfer the individual JPEG frames.