-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSpeechRecognitionOptions.swift
183 lines (149 loc) · 3.85 KB
/
SpeechRecognitionOptions.swift
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import ExpoModulesCore
import Speech
struct SpeechRecognitionOptions: Record {
@Field
var interimResults: Bool = false
@Field
var lang: String = "en-US"
@Field
var continuous: Bool = false
@Field
var maxAlternatives: Int = 5
@Field
var contextualStrings: [String]? = nil
@Field
var requiresOnDeviceRecognition: Bool = false
@Field
var addsPunctuation: Bool = false
@Field
var recordingOptions: RecordingOptions? = nil
@Field
var audioSource: AudioSourceOptions? = nil
@Field
var iosTaskHint: IOSTaskHint? = nil
@Field
var iosCategory: SetCategoryOptions? = nil
}
enum IOSTaskHint: String, Enumerable {
case unspecified
case dictation
case search
case confirmation
var sfSpeechRecognitionTaskHint: SFSpeechRecognitionTaskHint {
switch self {
case .unspecified: return .unspecified
case .dictation: return .dictation
case .search: return .search
case .confirmation: return .confirmation
}
}
}
struct RecordingOptions: Record {
@Field
var persist: Bool = false
@Field
var outputDirectory: String? = nil
@Field
var outputFileName: String? = nil
@Field
var outputSampleRate: Double? = nil
@Field
var outputEncoding: String? = nil
}
struct AudioSourceOptions: Record {
@Field
var uri: String = ""
@Field
var audioEncoding: Int? = nil
@Field
var sampleRate: Int? = 16000
@Field
var audioChannels: Int? = 1
@Field
var chunkDelayMillis: Int? = nil
}
struct GetSupportedLocaleOptions: Record {
@Field
var androidRecognitionServicePackage: String? = nil
}
enum CategoryParam: String, Enumerable {
case ambient
case soloAmbient
case playback
case record
case playAndRecord
case multiRoute
var avCategory: AVAudioSession.Category {
switch self {
case .ambient: return .ambient
case .soloAmbient: return .soloAmbient
case .playback: return .playback
case .record: return .record
case .playAndRecord: return .playAndRecord
case .multiRoute: return .multiRoute
}
}
}
enum CategoryOptionsParam: String, Enumerable {
case mixWithOthers
case duckOthers
case interruptSpokenAudioAndMixWithOthers
case allowBluetooth
case allowBluetoothA2DP
case allowAirPlay
case defaultToSpeaker
case overrideMutedMicrophoneInterruption
var avCategoryOption: AVAudioSession.CategoryOptions {
switch self {
case .mixWithOthers: return .mixWithOthers
case .duckOthers: return .duckOthers
case .interruptSpokenAudioAndMixWithOthers: return .interruptSpokenAudioAndMixWithOthers
case .allowBluetooth: return .allowBluetooth
case .allowBluetoothA2DP: return .allowBluetoothA2DP
case .allowAirPlay: return .allowAirPlay
case .defaultToSpeaker: return .defaultToSpeaker
case .overrideMutedMicrophoneInterruption:
if #available(iOS 14.5, *) {
return .overrideMutedMicrophoneInterruption
} else {
return .mixWithOthers
}
}
}
}
enum ModeParam: String, Enumerable {
case `default`
case gameChat
case measurement
case moviePlayback
case spokenAudio
case videoChat
case videoRecording
case voiceChat
case voicePrompt
var avMode: AVAudioSession.Mode {
switch self {
case .default: return .default
case .gameChat: return .gameChat
case .measurement: return .measurement
case .moviePlayback: return .moviePlayback
case .spokenAudio: return .spokenAudio
case .videoChat: return .videoChat
case .videoRecording: return .videoRecording
case .voiceChat: return .voiceChat
case .voicePrompt: return .voicePrompt
}
}
}
struct SetCategoryOptions: Record {
@Field
var category: CategoryParam = .playAndRecord
@Field
var categoryOptions: [CategoryOptionsParam] = [.duckOthers]
@Field
var mode: ModeParam = .measurement
}
struct SetAudioSessionActiveOptions: Record {
@Field
var notifyOthersOnDeactivation: Bool? = true
}