AVI in C++
-
how can I Append an AVI file in C++ ? I can make interleaving of two video file but I can not append one in the other, can someone help ???
-
how can I Append an AVI file in C++ ? I can make interleaving of two video file but I can not append one in the other, can someone help ???
AVI is a kind of RIFF file format, to combine more than one avi file with your own code, you must know AVI file format in byte depth.. You can get enough information from search engines, like AVI header and, index entry table etc... try these useful search keys; RIFF, avih, strh, strf, idx1, 00db, 00dc, 00wb, idx1
-
AVI is a kind of RIFF file format, to combine more than one avi file with your own code, you must know AVI file format in byte depth.. You can get enough information from search engines, like AVI header and, index entry table etc... try these useful search keys; RIFF, avih, strh, strf, idx1, 00db, 00dc, 00wb, idx1
Thank you Erkan, I saw some of this headers but I was trying to use some simple, I am able to use the microsoft API for videos (vfw32, or video for windows), but this API seams to not work fine, or I am using wrongly because it always make the interleaving of all streams, and seams to discard the delay structure of the stream. If you know something of this kind or line I will be real greatfull, otherwise, Thanks. Allan