Produce a simple video - uncompressed, frame-by-frame

I need an algorithm to write frames (Pictures) to a file that can be read using some video cutting / production software.

So, I got the frames, and I want to give them input to the / Method function. Let me be in Java.

How can i do this? Is there an easy way I can write video files without using any system codecs?

I just need an uncompressed video with a constant frame rate (25 frames per second or 50 frames per second) that will accept my true color images (2D color arrays) so that I can use this video in my Videoprogramm for work.

I did not find a single file that is suitable for this.

Can you help me?

Hello from Austria and thanks. Flo.

+4
source share
2 answers

Depending on the program that you want to use to further process your movie, you can also simply create PNG (or TGA or BMP) for single frames. VirtualDub, for example. can use images as frames for a movie.

+2
source

The AVI container format may contain uncompressed video streams, of which there are many types. Look here at http://fourcc.org/ in RGB and YUV formats, and here http://www.alexander-noe.com/video/documentation/avi.pdf for more information on the AVI file format.

+1
source

All Articles