Type Alias AudioAnalyserOptions
AudioAnalyserOptions: {
cloneTrack?: boolean;
fftSize?: number;
maxDecibels?: number;
minDecibels?: number;
smoothingTimeConstant?: number;
}
Type declaration
Optional
cloneTrack?: boolean
Optional
fftSize?: number
Optional
maxDecibels?: number
Optional
minDecibels?: number
Optional
smoothingTimeConstant?: number
If set to true, the analyser will use a cloned version of the underlying mediastreamtrack, which won't be impacted by muting the track. Useful for local tracks when implementing things like "seems like you're muted, but trying to speak". Defaults to false