Platform :

Popular Solution Go   Back

VBScript - How to screen recordings in FLV format

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.