ac-microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
25 lines (23 loc) • 864 B
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
exports.LanguageIdPriority = void 0;
/**
* Language Identification priority
* @class LanguageIdPriority
*/
var LanguageIdPriority;
(function (LanguageIdPriority) {
/**
* Prioritize Accuracy for Language Id (does not work for continuous mode LID)
* @member LanguageIdPriority.Accuracy
*/
LanguageIdPriority[LanguageIdPriority["Accuracy"] = 0] = "Accuracy";
/**
* Prioritize latency for Language Id
* @member LanguageIdPriority.Latency
*/
LanguageIdPriority[LanguageIdPriority["Latency"] = 1] = "Latency";
})(LanguageIdPriority = exports.LanguageIdPriority || (exports.LanguageIdPriority = {}));
//# sourceMappingURL=LanguageIdPriority.js.map