Inherits from NSObject
Declared in BZMediaParams.h

Overview

This interface describes the parameters for voice activity detection.

A BZVADParams object can be created as follows:

BZVADParams* bzVADParams = [[BZVADParams alloc] init];

Swift
let bzVADParams = BZVADParams()

Tasks

Properties

m_VADLikelihood

@property BZVADLikelihood m_VADLikelihood

Discussion

This parameter specifies the voice activity detection likelihood as defined in BZVADLikelihood. Default: BZVADLikelihood:VADL_DEFAULT.

Declared In

BZMediaParams.h

m_nVADGlobalThreshold

@property int m_nVADGlobalThreshold

Discussion

This parameter specifies the global threshold used by voice activity detection to transition between silence and speech states. Default: BZVADDefaultCustomParams: VAD_DEFAULTCUSTOM_GlobalThreshold.

Declared In

BZMediaParams.h

m_nVADLocalThreshold

@property int m_nVADLocalThreshold

Discussion

This parameter specifies the local threshold used by voice activity detection to transition between silence and speech states. Default: BZVADDefaultCustomParams: VAD_DEFAULTCUSTOM_LocalThreshold.

Declared In

BZMediaParams.h

m_nVADMinSilenceToDetectMs

@property int m_nVADMinSilenceToDetectMs

Discussion

This parameter specifies the minimum duration of silence in audio in milliseconds for voice activity detector to transition to silence state. Default: BZVADDefaultCustomParams: VAD_DEFAULTCUSTOM_MinSilenceToDetectMs.

Declared In

BZMediaParams.h

m_nVADMinSpeechToDetectMs

@property int m_nVADMinSpeechToDetectMs

Discussion

This parameter specifies the minimum duration of speech in audio in milliseconds for voice activity detector to transition to speech state. Default: BZVADDefaultCustomParams: VAD_DEFAULTCUSTOM_MinSpeechToDetectMs.

Declared In

BZMediaParams.h