@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
13 lines (12 loc) • 452 B
TypeScript
import { VoiceProfile } from "./Exports";
/**
* Defines SpeakerIdentificationModel class for Speaker Recognition
* Model contains a set of profiles against which to identify speaker(s)
* @class SpeakerIdentificationModel
*/
export declare class SpeakerIdentificationModel {
private privVoiceProfiles;
private constructor();
static fromProfiles(profiles: VoiceProfile[]): SpeakerIdentificationModel;
get voiceProfileIds(): string;
}