Free Trial
Web API version
Licensing
Request A Quote
HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
Merge AVI Video Files | VBScript and VB6
MergeAVIVideoFiles.vbs:
VB
' create video capturer activex object Set capturer = CreateObject("BytescoutScreenCapturing.Capturer") ' Merge AVI files that were previously created by the ByteScout Screen Capturer (must be of same size, FPS and type) capturer.JoinAVIFiles "Sample1.avi", "Sample2.avi", "output.avi" MsgBox "Files merged successfully!" ' destroy Capturer object so the video will be saved into the disk Set capturer = Nothing