TIEDirectShow.RenderAudio
Declaration
property RenderAudio: Boolean
Description
When enabled, the audio stream is rendered to the default audio renderer.
Sometimes audio is not synchronized with video. To get audio/video synchronized we should interact directly with hardware devices, but this will loss compatibility.
Anyway you could try to play with
ReferenceClock and
ClockErrorTolerance properties to get better synchronization.
Default: False
Example
// Enable playback of audio
ImageEnView1.IO.DShowParams.RenderAudio := True;
ImageEnView1.IO.DShowParams.ReferenceClock := rcAudioOutput;
See Also
◼RenderVideo
◼ReferenceClock