Click or drag to resize

IAudioHandlerOnAudioStreamStarted Method

Version 94.4.20
Called on a browser audio capture thread when the browser starts streaming audio. OnAudioSteamStopped 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: 94.4.20.0 (94.4.20.0)
Syntax
void OnAudioStreamStarted(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	AudioParameters parameters,
	int channels
)

Parameters

chromiumWebBrowser
Type: CefSharpIWebBrowser
the ChromiumWebBrowser control
browser
Type: CefSharpIBrowser
the browser object
parameters
Type: CefSharp.StructsAudioParameters
contains the audio parameters like sample rate and channel layout. Changing the param values will have no effect here.
channels
Type: SystemInt32
is the number of channels
See Also