Member Junction
    Preparing search index...

    A live handle to a running backend audio capture, returned by ICdpSessionBackend.StartAudioCapture. Stop tears the capture down (the backend's counterpart to having started it); the shared session calls it on import('./cdp-remote-browser-session').CdpRemoteBrowserSession.StopAudioStream and Close().

    interface ICdpAudioCaptureHandle {
        Stop(): Promise<void>;
    }
    Index

    Methods

    Methods

    • Stops the audio capture and releases its resources. Should be idempotent and non-throwing for an already-stopped capture.

      Returns Promise<void>

      A promise that resolves once the capture has stopped.