View Single Post
Author Message
Privatex86
Junior Member
Join Date: Dec 2016
Old 06-17-2017 , 13:12   Bitmap Capture Thread
Reply With Quote #1

Welcome,

I am writing a simple application in Visual Studio 2008. However, I will be running a simple thread that captures bitmap images for AVI videos which will save them to an array or disk some how. I will execute the thread when the application starts and do something along the lines of :

Code:
Bitmap BitmapCapture = new Bitmap(Screen.Width, Screen.Height, System.Drawing.Imaging.PixelFormat.Format24bppRgb);

// TODO : save to disk/memory etc
// todo : run bitmap2avi.exe util or something with directory of saved images blahblahblah
I would also like to know how to record the audio in a Microsoft Windows based environment using a simplistic library from scratch for my project. Please can somebody provide me with idea's? I have tried Stereo Mix but it appears they've removed it.
Privatex86 is offline