ByteScout Screen Capturing SDK - VBScript and VB6 - Set Multiple Regions Recording for Video - ByteScout

ByteScout Screen Capturing SDK – VBScript and VB6 – Set Multiple Regions Recording for Video

  • Home
  • /
  • Articles
  • /
  • ByteScout Screen Capturing SDK – VBScript and VB6 – Set Multiple Regions Recording for Video

How to set multiple regions recording for video in VBScript and VB6 with ByteScout Screen Capturing SDK

How to code in VBScript and VB6 to set multiple regions recording for video with this step-by-step tutorial

The sample source code below will teach you how to set multiple regions recording for video in VBScript and VB6. ByteScout Screen Capturing SDK is the screen video recording SDK helps in quick implementation of screen video recording. WMV, AVI, WebM output options are available with adjustable quality, video size, framerate and video and audio codec. Includes special features like live multiple blacking out of selected areas, recording from web cam as main source and as overlay, optional watermarks for output video. It can set multiple regions recording for video in VBScript and VB6.

VBScript and VB6 code samples for VBScript and VB6 developers help to speed up coding of your application when using ByteScout Screen Capturing SDK. In your VBScript and VB6 project or application you may simply copy & paste the code and then run your app! Enjoy writing a code with ready-to-use sample VBScript and VB6 codes.

Trial version of ByteScout Screen Capturing SDK is available for free. Source code samples are included to help you with your VBScript and VB6 app.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

CaptureMultipleRegions.vbs
      
' create video capturer activex object Set capturer1 = CreateObject("BytescoutScreenCapturing.Capturer") Set capturer2 = CreateObject("BytescoutScreenCapturing.Capturer") ' set output video file name (WMV), you can also set to AVI capturer1.OutputFileName = "Region1.wmv" capturer2.OutputFileName = "Region2.wmv" ' set capturing type to the caRegion =0 to capture the given region capturer1.CapturingType = 0 capturer2.CapturingType = 0 ' set left coordinate of the rectangle to capture from capturer1.CaptureRectLeft = 100 ' set top coordinate of the rectangle to capture from capturer1.CaptureRectTop = 100 ' set width of the rectangle to capture from capturer1.CaptureRectWidth = 320 ' set height of the rectangle to capture from capturer1.CaptureRectHeight = 240 ' set left coordinate of the rectangle to capture from capturer2.CaptureRectLeft = 300 ' set top coordinate of the rectangle to capture from capturer2.CaptureRectTop = 200 ' set width of the rectangle to capture from capturer2.CaptureRectWidth = 320 ' set height of the rectangle to capture from capturer2.CaptureRectHeight = 240 ' set width of the output video capturer1.OutputWidth = 640 ' set height of the output video capturer1.OutputHeight = 480 ' set width of the output video capturer2.OutputWidth = 640 ' set height of the output video capturer2.OutputHeight = 480 ' set border type to show around captured area capturer1.CaptureAreaBorderType = 2 ' CaptureAreaBorderType.cabtDashed ' set border type to show around captured area capturer2.CaptureAreaBorderType = 1 ' CaptureAreaBorderType.cabtSolid ' uncomment to enable recording of semitransparent or layered windows (Warning: may cause mouse cursor flickering) ' capturer1.CaptureTransparentControls = true ' capturer2.CaptureTransparentControls = true MsgBox "This script will record video from 2 regions for 5 seconds. Output video will go to Region1.wmv and Region2.wmv" ' run video capturing capturer1.Run() capturer2.Run() ' IMPORTANT: if you want to check for some code if need to stop the recording then make sure you are ' using Thread.Sleep(1) inside the checking loop, so you have the loop like ' Do ' Thread.Sleep(1) ' While StopButtonNotClicked ' wait for 5 seconds (5000 msec) WScript.Sleep(5000) ' stop capturing capturer1.Stop() capturer2.Stop() ' destroy Capturer object so the video will be saved into the disk Set capturer1 = Nothing Set capturer2 = Nothing

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Screen Capturing SDK Home Page

Explore ByteScout Screen Capturing SDK Documentation

Explore Samples

Sign Up for ByteScout Screen Capturing SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Screen Capturing SDK Home Page

Explore ByteScout Screen Capturing SDK Documentation

Explore Samples

Sign Up for ByteScout Screen Capturing SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next