Menu Close

Category: Audio

OnAudioPeak event not working

Verify in the code if some third-party codecs could have been excluded with VideoGrabber.PlayerForcedCodec = “NO_…”, e.g.: VideoGrabber.PlayerForcedCodec := ‘NOFFDSHOW’; If this is the case,…

The Audio level is not great, how to boost it

Using the TVideoGrabber SDK with the Multipurpose Encoder installed, e.g. to increase the volume by 6dB, set: VideoGrabber.SetFFmpegAudioFilter (0, ‘volume’, ‘6dB’); or VideoGrabber.SetFFmpegAudioFilter (0, ‘volume’,…

Enabling audio with IP cameras and URL sources

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…