Click or drag to resize

IAudioHandlerOnAudioStreamStarted Method

Version 130.1.90
Called on a browser audio capture thread when the browser starts streaming audio. OnAudioStreamStopped will always be called after OnAudioStreamStarted; both methods may be called multiple times for the same browser.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
void OnAudioStreamStarted(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	AudioParameters parameters,
	int channels
)

Parameters

chromiumWebBrowser  IWebBrowser
the ChromiumWebBrowser control
browser  IBrowser
the browser object
parameters  AudioParameters
contains the audio parameters like sample rate and channel layout. Changing the param values will have no effect here.
channels  Int32
is the number of channels
See Also