plz help me, how can read and write AVI files?
-
I think you are searching for DirectShow (DS). You should have a look at the Multimedia Chapter on Code-Project, here are some samples on how to use DS. DS is well documented here: http://msdn2.microsoft.com/en-us/library/ms783323(VS.85).aspx[^] ... have a look at the supported formats here: http://msdn2.microsoft.com/en-us/library/ms787745(VS.85).aspx[^] Regards!
-
I think you are searching for DirectShow (DS). You should have a look at the Multimedia Chapter on Code-Project, here are some samples on how to use DS. DS is well documented here: http://msdn2.microsoft.com/en-us/library/ms783323(VS.85).aspx[^] ... have a look at the supported formats here: http://msdn2.microsoft.com/en-us/library/ms787745(VS.85).aspx[^] Regards!
-
-
v.j wrote:
how can read a avi file and write in another file?
From what I understood from your question, you would like to read the entire AVI file and copy its content in a new file. In fact, you just want to copy the file, am I right ? In that case, you don't need to make things very complicated: just copy the file and don't care about interpreting its contents. That's much more easier that using a specialized library that can read AVI files.
Cédric Moonen Software developer
Charting control [v1.2] -
v.j wrote:
how can read a avi file and write in another file?
From what I understood from your question, you would like to read the entire AVI file and copy its content in a new file. In fact, you just want to copy the file, am I right ? In that case, you don't need to make things very complicated: just copy the file and don't care about interpreting its contents. That's much more easier that using a specialized library that can read AVI files.
Cédric Moonen Software developer
Charting control [v1.2] -
i m already see this but its is in c# language and i m working on VC++2005. thanks for help
v.j wrote:
i m already see this but its is in c#
Oh really(why you dont use of C# ;P) ok see Displaying, Reading and writing avi Files[^] and 100% c++. :-D
-
no i dont want to copy whole avi file. i m select a part and copy this part to another file. so now tell me wat can i do?
v.j wrote:
So now tell me w_h_at can I do?
1/ Use Shift key to make some letters capitals. 2/ You can modify your original question by adding the new information at the bottom, in case someone can help you, but reads the incomplete question. Iain.
-
no i dont want to copy whole avi file. i m select a part and copy this part to another file. so now tell me wat can i do?
Please try to give us more informations on your task. Do you want to save fragments of an source-avi to a new avi? Do you want to transcode the streams? DirectShow is also provided for C# ... have a look at: http://sourceforge.net/projects/directshownet/[^]