Platform : Windows 10, Windows 8, Vista, Windows 7, XP
For Windows Developers who need to Screen Recording with Speaker or Microphone to H264 MP4, AVI, WMV, SWF, FLV for C++, c#, vb.net , vb, delphi, vfp, MS Access.
Step 1: Download Screen2Video Pro SDK ActiveX setup disk and installed it.
Step 2: Create Text file, type following code and save as testscreencapture.vbs
Set obj=CreateObject("SCREEN2VIDEO.Screen2VideoCtrl.1")
obj.InitControlWithNoUI
obj.OutputType = 3
obj.FileName = "c:\output.flv"
obj.FPS =15
obj.FLVAudioBitrate=96000
obj.FLVVideoBitrate = 3512000
obj.FLVOutputWidth = 640
obj.FLVOutputHeight = 480
obj.CaptureArea 0, 0, 100, 100
obj.CaptureCursor = true
obj.AudioDevice = 0
obj.Start
MsgBox "Press Ok button to stop screen capturing, it will save to c:\output.flv"
obj.Stop
Step 3: double-clicke testscreencapture.vbs file and start to screen capturing.