Click here to Skip to main content
15,909,440 members

Comments by Speed.Of.Light (Top 4 by date)

Speed.Of.Light 31-Aug-10 18:58pm View    
No, this is a video processing component/library, and it's not what I'm looking for.
Speed.Of.Light 31-Aug-10 15:48pm View    
I know that I can copy screen into Bitmap like this:
Bitmap memoryImage = new Bitmap( width, height, PixelFormat.Format32bppArgb);
using ( Graphics memoryGrahics = Graphics.FromImage( memoryImage ) )
{
    memoryGrahics.CopyFromScreen( rc.X, rc.Y, 0, 0, rc.Size, CopyPixelOperation.SourceCopy );
}

But how can I "turn those frames into a movie" using VP8 encoding ?
Speed.Of.Light 11-Jun-10 16:19pm View    
Thanks Prakash!
That's what I was looking for.
Speed.Of.Light 8-Jun-10 17:06pm View    
THAT EASY!!
Thanxxxx (I feel stupid)!