The AudioClassifier Component

The AudioClassifier component facilitates the detection and classification of audio inputs using the microphone. It captures audio, identifies different sound categories, and provides updated data on detected audio events. Users can set callback functions to receive updates on audio classifications.

Starting Audio Detection

To start classifying audio, call the start method.

Protobject.AudioClassifier.start();

Handling Audio Data

To handle audio classification data, set a callback function using the onData method. This function will be called with audio data whenever there are updates.

Protobject.AudioClassifier.onData((data) => {
    console.log("Audio Event Data: ", data); 
});

More information: