make sequences from videos

  • Thread starter Thread starter Alexandre Jaquet
  • Start date Start date
A

Alexandre Jaquet

Hi,

I'm looking for a method to cut some avi files to obtain clips from it.

Anybody have an idea ?

Thanks.
 
Alexandre,

There are some rudimentary AVI APIs in Windows you could use. Look in
the section of the Windows Platform SDK titled "Windows Multimedia". There
is a section titled "AVIFile Reference" which has the functions you will
need to manipulate AVI files. You can find this online at (watch for line
wrap):

http://msdn.microsoft.com/library/d...-us/multimed/htm/_win32_avifile_reference.asp

You will have to make the calls using the P/Invoke layer, and COM
interop (it involves using both).

Hope this helps.
 
Great Nicholas many thanks :)

--
Alexandre Jaquet
Techicien ET Analyste programmeur

Nicholas Paldino said:
Alexandre,

There are some rudimentary AVI APIs in Windows you could use. Look in
the section of the Windows Platform SDK titled "Windows Multimedia". There
is a section titled "AVIFile Reference" which has the functions you will
need to manipulate AVI files. You can find this online at (watch for line
wrap):

http://msdn.microsoft.com/library/d...-us/multimed/htm/_win32_avifile_reference.asp

You will have to make the calls using the P/Invoke layer, and COM
interop (it involves using both).

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Alexandre Jaquet said:
Hi,

I'm looking for a method to cut some avi files to obtain clips from it.

Anybody have an idea ?

Thanks.
 
Back
Top