How to create a AVI movie file with c# ?

  • Thread starter Thread starter FredBen
  • Start date Start date
F

FredBen

Hi all

I d like to save my screen capture into a avi file. I know how to do
that in VC++ but i am a complete newbie with c#.

any ideas ? advice ? sample ?

ben
 
FredBen,

There aren't any managed APIs that will allow you to do this in .NET out
of the box. Your best bet is to still do it the way you would do it in
VC++, using the P/Invoke layer and COM interop to interact with whatever
code you were using in C++.

Hope this helps.
 
here you have some code

http://www.codeproject.com/csharp/steganodotnet4.asp

Paco


Nicholas Paldino said:
FredBen,

There aren't any managed APIs that will allow you to do this in .NET out
of the box. Your best bet is to still do it the way you would do it in
VC++, using the P/Invoke layer and COM interop to interact with whatever
code you were using in C++.

Hope this helps.


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

FredBen said:
Hi all

I d like to save my screen capture into a avi file. I know how to do
that in VC++ but i am a complete newbie with c#.

any ideas ? advice ? sample ?

ben
 
Back
Top