@zoom/react-native-videosdk
    Preparing search index...

    Test audio device interface.

    type ZoomVideoSdkTestAudioDeviceHelperType = {
        playMicTest: () => Promise<Errors>;
        startMicTest: () => Promise<Errors>;
        startSpeakerTest: () => Promise<Errors>;
        stopMicTest: () => Promise<Errors>;
        stopSpeakerTest: () => Promise<Errors>;
    }

    Implemented by

    Index

    Properties

    playMicTest: () => Promise<Errors>

    Play the microphone recorded sound. You must complete a microphone test by successfully executing startMicTest and stopMicTest before calling this. Otherwise this returns an error.

    startMicTest: () => Promise<Errors>

    Start the microphone test. This will start recording the input from the microphone. Once the recording is complete, call stopMicTest to finish the recording.

    startSpeakerTest: () => Promise<Errors>

    Start the speaker test.

    stopMicTest: () => Promise<Errors>

    Stop the microphone test. Before calling this, you must have successfully started the microphone test by calling startMicTest. Otherwise this returns an error.

    stopSpeakerTest: () => Promise<Errors>

    Stop the speaker test. Before calling this, you must have successfully started the speaker test by calling startSpeakerTest. Otherwise this returns an error.