Viscom Software VideoCap ActiveX Control

EffectChromaKeyCapAudioDevice Property

Description:   

Enables/disable capture the audio from audio device when capture to AVI, WMV, MP4 file. By default , it will capture the audio stream of video file. If you do not want to hearing the audio, you may set CaptureAudio = false.

Usage:   

VideoCap1.EffectChromaKeyCapAudioDevice[= value]

Data Type:   

Bool

Example:   

This Visual Basic set the chroma key color:

Private Sub Capture_Click()
VideoCap1.CaptureMode = False
VideoCap1.CaptureAudio = True
VideoCap1.EffectChromaKeyCapAudioDevice = False
VideoCap1.EffectType = 5
VideoCap1.EffectChromaKeyVideoFile = "c:\test\yourvideo.mp4"
VideoCap1.EffectChromaKeyEffect = 0
VideoCap1.EffectChromaKeyVideoIsBg = False
VideoCap1.EffectChromaKeyKeepLastFrame = True
VideoCap1.EffectChromaKeyFreezeOverlay = False
VideoCap1.EffectChromaKeyDisplayMask = False
VideoCap1.EffectChromaKeyOverlayX = 0
VideoCap1.EffectChromaKeyOverlayY = 0
VideoCap1.EffectChromaKeyOverlayScale = 50
VideoCap1.Start
VideoCap1.EffectChromaKeyBgColor = RGB(0, 255, 0)
End Sub

Value:   

RGB(255,0,0)