KeenASR Framework v2.1 (8b72cc4)
Keen Research
Loading...
Searching...
No Matches
KIOSAudioQualityResult.h
1#ifndef KIOSAudioQualityResult_h
2#define KIOSAudioQualityResult_h
3
11@interface KIOSAudioQualityResult : NSObject
12
18- (nonnull NSString *)toJson;
19
25@property(nonatomic, readonly, nonnull) NSArray<NSNumber *> *frameRmsValues;
26
33@property(nonatomic, readonly) NSUInteger clippedSampleCount;
34
43@property(nonatomic, readonly, nullable) NSNumber *snrValue;
44
50@property(nonatomic, readonly, nullable) NSNumber *meanSpeechRmsValue;
51
55@property(nonatomic, readonly, nonnull) NSNumber *meanNonSpeechRmsValue;
56
65@property(nonatomic, readonly, nullable) NSNumber *peakSpeechRmsValue;
66
73@property(nonatomic, readonly) BOOL initialSegmentRmsWarning;
74
75@end
76
77#endif /* KIOSAudioQualityResult_h */
Definition KIOSAudioQualityResult.h:12
NSNumber * meanNonSpeechRmsValue
Definition KIOSAudioQualityResult.h:55
NSUInteger clippedSampleCount
Definition KIOSAudioQualityResult.h:33
NSArray< NSNumber * > * frameRmsValues
Definition KIOSAudioQualityResult.h:25
BOOL initialSegmentRmsWarning
Definition KIOSAudioQualityResult.h:73
NSNumber * peakSpeechRmsValue
Definition KIOSAudioQualityResult.h:65
nonnull NSString * toJson()
NSNumber * meanSpeechRmsValue
Definition KIOSAudioQualityResult.h:50
NSNumber * snrValue
Definition KIOSAudioQualityResult.h:43