Specify AudioSource = as_UseExternalAudio and specify the index of the audio device as follows, e.g.: Videograbber.VideoSource = vs_IPCamera; VideoGrabber.AudioSource = as_UseExternalAudio; // pass to AudioDeviceIndex…
RENDERING VideoGrabber.VideoSource = vs_IPCamera VideoGrabber.IPCameraURL = “rtsp://…” VideoGrabber.AudioDeviceRendering = true VideoGrabber.StartPreview() (in MainDemo.exe, check “audio rendering” in the “audio” tab) RECORDING VideoGrabber.VideoSource = vs_IPCamera VideoGrabber.IPCameraURL…
AUDIO/VIDEO CAPTURE (StartPreview / StartRecording): By default the audio is disabled. – to enable the audio rendering, set: VideoGrabber.AudioDeviceRendering = true – to enable the…
Try the following sample code: videoGrabber->SetAudioDevice(idx); videoGrabber->SetRawAudioSampleCapture(TRUE); videoGrabber->SetOnRawAudioSample(g_OnRawAudioSampleCb); videoGrabber->StartAudioRendering();