SetAudioLevel (DVR version only)
|
Value [in]
|
The recording level to be set, in percent.
|
S_OK
|
Success
|
E_FAIL
|
Failure.
|
Private Sub Form_Load()
|
ActiveGige1.SetAudioSource 0
|
HScroll1.Min=0
|
HScroll1.Max=100
|
HScroll.Value=ActiveGige1.GetAudioLevel
|
End Sub
|
|
Private Sub Capture_Click
|
ActiveGige1.StartCapture "c:\\capture_with_sound.avi"
|
End Sub
|
|
Private Sub HScroll1_Scroll()
|
ActiveGige1.SetAudioLevel HScroll1.Value
|
End Sub
|
|