forked from Azure-Samples/cognitive-services-speech-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
25 lines (19 loc) · 904 Bytes
/
settings.js
File metadata and controls
25 lines (19 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
(function() {
"use strict";
module.exports = {
// Replace with your own subscription key, service region (e.g., "westus"),
// and recognition language.
subscriptionKey: "YourSubscriptionKey",
serviceRegion: "YourServiceRegion", // e.g., "westus"
language: "en-US",
// Replace with the full path to a wav file you want to recognize.
filename: "YourAudioFile.wav", // 16000 Hz, Mono
// Replace with your own Language Understanding subscription key (endpoint
// key), region, and app ID in case you want to run the intent sample.
luSubscriptionKey: "YourLanguageUnderstandingSubscriptionKey",
luServiceRegion: "YourLanguageUnderstandingServiceRegion",
luAppId: "YourLanguageUnderstandingAppId",
};
}());