-
Notifications
You must be signed in to change notification settings - Fork 0
/
module-config.gen.js
73 lines (71 loc) · 1.83 KB
/
module-config.gen.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*********************************************************************
* This file is automatically generated by mmir-plugins-export tools *
* Do not modify: ANY CHANGES WILL GET DISCARDED *
*********************************************************************/
module.exports = {
pluginName: ["ttsAndroid","asrAndroid"],
plugins: {
ttsAndroid: {
pluginName: "ttsAndroid",
config: [
/**
* the environment(s) in which this plugin can/should be enabled
* @default "android"
*/
"env",
/**
* the plugin type
* @default "tts"
*/
"type",
/**
* the module/plugin name for the MediaManager plugins configuration
* @default "mmir-plugin-speech-android/ttsAndroid"
*/
"mod"
],
defaultValues: {
env: "android",
type: "tts",
mod: "mmir-plugin-speech-android/ttsAndroid"
},
speechConfig: [
/** OPTIONAL
* a specific voice for TTS
* @type string
*/
"voice",
/** OPTIONAL
* the language/country for TTS
* @type string
*/
"language"
]
},
asrAndroid: {
pluginName: "asrAndroid",
config: [
/**
* the environment(s) in which this plugin can/should be enabled
* @default "android"
*/
"env",
/**
* the plugin type
* @default "asr"
*/
"type",
/**
* the module/plugin name for the MediaManager plugins configuration
* @default "mmir-plugin-speech-android"
*/
"mod"
],
defaultValues: {
env: "android",
type: "asr",
mod: "mmir-plugin-speech-android"
}
}
}
};