react-native-davoice-tts 1.0.368 → 1.0.370
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/TTSRNBridge.podspec +1 -1
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar +0 -0
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.md5 +1 -1
- package/android/libs/com/davoice/tts/1.0.0/tts-1.0.0.aar.sha1 +1 -1
- package/android/src/main/libs/MyLibrary-release.aar +0 -0
- package/ios/SpeechBridge/SpeechBridge.m +8 -8
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/Info.plist +5 -5
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/DavoiceTTS +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.abi.json +46 -39
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/DavoiceTTS +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.abi.json +46 -39
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json +46 -39
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeDirectory +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/_CodeSignature/CodeResources +12 -12
- package/package.json +1 -1
- package/speech/index.ts +41 -26
package/TTSRNBridge.podspec
CHANGED
|
@@ -2,7 +2,7 @@ require 'json'
|
|
|
2
2
|
|
|
3
3
|
Pod::Spec.new do |s|
|
|
4
4
|
s.name = "TTSRNBridge"
|
|
5
|
-
s.version = "1.0.
|
|
5
|
+
s.version = "1.0.304" # Update to your package version
|
|
6
6
|
s.summary = "TTS for React Native."
|
|
7
7
|
s.description = <<-DESC
|
|
8
8
|
A React Native module for tts .
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
c74f2a1a66110cce02e155b3fe2b7be1 tts-1.0.0.aar
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
63f168215f50d203c886df6fe81f0183c525df84 tts-1.0.0.aar
|
|
Binary file
|
|
@@ -654,8 +654,8 @@ RCT_EXPORT_METHOD(pauseSpeechRecognitionLiteAsync:(nonnull NSNumber *)timeoutMs
|
|
|
654
654
|
{
|
|
655
655
|
if (!self.stt) { resolve(@{@"ok": @(YES), @"reason": @""}); return; }
|
|
656
656
|
|
|
657
|
-
NSNumber *t = timeoutMs ?: @(
|
|
658
|
-
if (t.doubleValue <= 0) t = @(
|
|
657
|
+
NSNumber *t = timeoutMs ?: @(500);
|
|
658
|
+
if (t.doubleValue <= 0) t = @(500);
|
|
659
659
|
CFTimeInterval startedAt = CACurrentMediaTime();
|
|
660
660
|
SBDebugLog(@"[SpeechBridge] %@ pauseSpeechRecognitionLiteAsync begin timeoutMs=%@ stt=%@", SBNowString(), t, self.stt);
|
|
661
661
|
|
|
@@ -703,8 +703,8 @@ RCT_EXPORT_METHOD(unPauseSpeechRecognitionLiteAsync:(nonnull NSNumber *)times
|
|
|
703
703
|
{
|
|
704
704
|
if (!self.stt) { resolve(@{@"ok": @(YES), @"reason": @""}); return; }
|
|
705
705
|
|
|
706
|
-
NSNumber *t = timeoutMs ?: @(
|
|
707
|
-
if (t.doubleValue <= 0) t = @(
|
|
706
|
+
NSNumber *t = timeoutMs ?: @(500);
|
|
707
|
+
if (t.doubleValue <= 0) t = @(500);
|
|
708
708
|
NSNumber *pf = preFetch ?: @(0);
|
|
709
709
|
if (pf.doubleValue < 0) pf = @(0);
|
|
710
710
|
CFTimeInterval startedAt = CACurrentMediaTime();
|
|
@@ -745,8 +745,8 @@ RCT_EXPORT_METHOD(pauseMicrophoneAsync:(nonnull NSNumber *)timeoutMs
|
|
|
745
745
|
if (!self.stt) { resolve(@{@"ok": @(NO), @"reason": @"no_stt"}); return; }
|
|
746
746
|
|
|
747
747
|
// Default if caller passes null/0
|
|
748
|
-
NSNumber *t = timeoutMs ?: @(
|
|
749
|
-
if (t.doubleValue <= 0) t = @(
|
|
748
|
+
NSNumber *t = timeoutMs ?: @(500);
|
|
749
|
+
if (t.doubleValue <= 0) t = @(500);
|
|
750
750
|
|
|
751
751
|
// STT.swift will do the main-queue polling internally
|
|
752
752
|
[self.stt pauseMicrophoneAndWait:t completion:^(BOOL ok, NSString * _Nullable reason) {
|
|
@@ -761,8 +761,8 @@ RCT_EXPORT_METHOD(unPauseMicrophoneAsync:(nonnull NSNumber *)timeoutMs
|
|
|
761
761
|
{
|
|
762
762
|
if (!self.stt) { resolve(@{@"ok": @(NO), @"reason": @"no_stt"}); return; }
|
|
763
763
|
|
|
764
|
-
NSNumber *t = timeoutMs ?: @(
|
|
765
|
-
if (t.doubleValue <= 0) t = @(
|
|
764
|
+
NSNumber *t = timeoutMs ?: @(500);
|
|
765
|
+
if (t.doubleValue <= 0) t = @(500);
|
|
766
766
|
|
|
767
767
|
[self.stt unPauseMicrophoneAndWait:t completion:^(BOOL ok, NSString * _Nullable reason) {
|
|
768
768
|
resolve(@{@"ok": @(ok), @"reason": reason ?: @""});
|
|
@@ -8,32 +8,32 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>DavoiceTTS.framework/DavoiceTTS</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-
|
|
11
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>DavoiceTTS.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
16
|
<string>arm64</string>
|
|
17
|
+
<string>x86_64</string>
|
|
17
18
|
</array>
|
|
18
19
|
<key>SupportedPlatform</key>
|
|
19
20
|
<string>ios</string>
|
|
21
|
+
<key>SupportedPlatformVariant</key>
|
|
22
|
+
<string>simulator</string>
|
|
20
23
|
</dict>
|
|
21
24
|
<dict>
|
|
22
25
|
<key>BinaryPath</key>
|
|
23
26
|
<string>DavoiceTTS.framework/DavoiceTTS</string>
|
|
24
27
|
<key>LibraryIdentifier</key>
|
|
25
|
-
<string>ios-
|
|
28
|
+
<string>ios-arm64</string>
|
|
26
29
|
<key>LibraryPath</key>
|
|
27
30
|
<string>DavoiceTTS.framework</string>
|
|
28
31
|
<key>SupportedArchitectures</key>
|
|
29
32
|
<array>
|
|
30
33
|
<string>arm64</string>
|
|
31
|
-
<string>x86_64</string>
|
|
32
34
|
</array>
|
|
33
35
|
<key>SupportedPlatform</key>
|
|
34
36
|
<string>ios</string>
|
|
35
|
-
<key>SupportedPlatformVariant</key>
|
|
36
|
-
<string>simulator</string>
|
|
37
37
|
</dict>
|
|
38
38
|
</array>
|
|
39
39
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
@@ -12157,276 +12157,283 @@
|
|
|
12157
12157
|
"length": 5,
|
|
12158
12158
|
"value": "false"
|
|
12159
12159
|
},
|
|
12160
|
+
{
|
|
12161
|
+
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12162
|
+
"kind": "IntegerLiteral",
|
|
12163
|
+
"offset": 16085,
|
|
12164
|
+
"length": 1,
|
|
12165
|
+
"value": "0"
|
|
12166
|
+
},
|
|
12160
12167
|
{
|
|
12161
12168
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12162
12169
|
"kind": "BooleanLiteral",
|
|
12163
|
-
"offset":
|
|
12170
|
+
"offset": 16145,
|
|
12164
12171
|
"length": 5,
|
|
12165
12172
|
"value": "false"
|
|
12166
12173
|
},
|
|
12167
12174
|
{
|
|
12168
12175
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12169
12176
|
"kind": "IntegerLiteral",
|
|
12170
|
-
"offset":
|
|
12177
|
+
"offset": 16456,
|
|
12171
12178
|
"length": 1,
|
|
12172
12179
|
"value": "0"
|
|
12173
12180
|
},
|
|
12174
12181
|
{
|
|
12175
12182
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12176
12183
|
"kind": "Array",
|
|
12177
|
-
"offset":
|
|
12184
|
+
"offset": 16568,
|
|
12178
12185
|
"length": 2,
|
|
12179
12186
|
"value": "[]"
|
|
12180
12187
|
},
|
|
12181
12188
|
{
|
|
12182
12189
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12183
12190
|
"kind": "IntegerLiteral",
|
|
12184
|
-
"offset":
|
|
12191
|
+
"offset": 16672,
|
|
12185
12192
|
"length": 1,
|
|
12186
12193
|
"value": "0"
|
|
12187
12194
|
},
|
|
12188
12195
|
{
|
|
12189
12196
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12190
12197
|
"kind": "IntegerLiteral",
|
|
12191
|
-
"offset":
|
|
12198
|
+
"offset": 16723,
|
|
12192
12199
|
"length": 1,
|
|
12193
12200
|
"value": "0"
|
|
12194
12201
|
},
|
|
12195
12202
|
{
|
|
12196
12203
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12197
12204
|
"kind": "IntegerLiteral",
|
|
12198
|
-
"offset":
|
|
12205
|
+
"offset": 16778,
|
|
12199
12206
|
"length": 1,
|
|
12200
12207
|
"value": "0"
|
|
12201
12208
|
},
|
|
12202
12209
|
{
|
|
12203
12210
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12204
12211
|
"kind": "IntegerLiteral",
|
|
12205
|
-
"offset":
|
|
12212
|
+
"offset": 16829,
|
|
12206
12213
|
"length": 1,
|
|
12207
12214
|
"value": "0"
|
|
12208
12215
|
},
|
|
12209
12216
|
{
|
|
12210
12217
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12211
12218
|
"kind": "IntegerLiteral",
|
|
12212
|
-
"offset":
|
|
12219
|
+
"offset": 16889,
|
|
12213
12220
|
"length": 1,
|
|
12214
12221
|
"value": "0"
|
|
12215
12222
|
},
|
|
12216
12223
|
{
|
|
12217
12224
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12218
12225
|
"kind": "FloatLiteral",
|
|
12219
|
-
"offset":
|
|
12226
|
+
"offset": 16957,
|
|
12220
12227
|
"length": 4,
|
|
12221
12228
|
"value": "0.75"
|
|
12222
12229
|
},
|
|
12223
12230
|
{
|
|
12224
12231
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12225
12232
|
"kind": "BooleanLiteral",
|
|
12226
|
-
"offset":
|
|
12233
|
+
"offset": 17010,
|
|
12227
12234
|
"length": 5,
|
|
12228
12235
|
"value": "false"
|
|
12229
12236
|
},
|
|
12230
12237
|
{
|
|
12231
12238
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12232
12239
|
"kind": "IntegerLiteral",
|
|
12233
|
-
"offset":
|
|
12240
|
+
"offset": 17134,
|
|
12234
12241
|
"length": 1,
|
|
12235
12242
|
"value": "0"
|
|
12236
12243
|
},
|
|
12237
12244
|
{
|
|
12238
12245
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12239
12246
|
"kind": "IntegerLiteral",
|
|
12240
|
-
"offset":
|
|
12247
|
+
"offset": 17189,
|
|
12241
12248
|
"length": 1,
|
|
12242
12249
|
"value": "0"
|
|
12243
12250
|
},
|
|
12244
12251
|
{
|
|
12245
12252
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12246
12253
|
"kind": "IntegerLiteral",
|
|
12247
|
-
"offset":
|
|
12254
|
+
"offset": 17255,
|
|
12248
12255
|
"length": 1,
|
|
12249
12256
|
"value": "0"
|
|
12250
12257
|
},
|
|
12251
12258
|
{
|
|
12252
12259
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12253
12260
|
"kind": "IntegerLiteral",
|
|
12254
|
-
"offset":
|
|
12261
|
+
"offset": 17320,
|
|
12255
12262
|
"length": 1,
|
|
12256
12263
|
"value": "0"
|
|
12257
12264
|
},
|
|
12258
12265
|
{
|
|
12259
12266
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12260
12267
|
"kind": "FloatLiteral",
|
|
12261
|
-
"offset":
|
|
12268
|
+
"offset": 17391,
|
|
12262
12269
|
"length": 4,
|
|
12263
12270
|
"value": "0.20"
|
|
12264
12271
|
},
|
|
12265
12272
|
{
|
|
12266
12273
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12267
12274
|
"kind": "BooleanLiteral",
|
|
12268
|
-
"offset":
|
|
12275
|
+
"offset": 22828,
|
|
12269
12276
|
"length": 5,
|
|
12270
12277
|
"value": "false"
|
|
12271
12278
|
},
|
|
12272
12279
|
{
|
|
12273
12280
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12274
12281
|
"kind": "BooleanLiteral",
|
|
12275
|
-
"offset":
|
|
12282
|
+
"offset": 23095,
|
|
12276
12283
|
"length": 5,
|
|
12277
12284
|
"value": "false"
|
|
12278
12285
|
},
|
|
12279
12286
|
{
|
|
12280
12287
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12281
12288
|
"kind": "Array",
|
|
12282
|
-
"offset":
|
|
12289
|
+
"offset": 35955,
|
|
12283
12290
|
"length": 203,
|
|
12284
12291
|
"value": "[\"onSpeechResults\", \"onSpeechStart\", \"onSpeechPartialResults\", \"onSpeechError\", \"onSpeechEnd\", \"onSpeechRecognized\", \"onSpeechVolumeChanged\"]"
|
|
12285
12292
|
},
|
|
12286
12293
|
{
|
|
12287
12294
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12288
12295
|
"kind": "StringLiteral",
|
|
12289
|
-
"offset":
|
|
12296
|
+
"offset": 68495,
|
|
12290
12297
|
"length": 12,
|
|
12291
12298
|
"value": "\"pollOnMain\""
|
|
12292
12299
|
},
|
|
12293
12300
|
{
|
|
12294
12301
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12295
12302
|
"kind": "IntegerLiteral",
|
|
12296
|
-
"offset":
|
|
12303
|
+
"offset": 77576,
|
|
12297
12304
|
"length": 1,
|
|
12298
12305
|
"value": "0"
|
|
12299
12306
|
},
|
|
12300
12307
|
{
|
|
12301
12308
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12302
12309
|
"kind": "StringLiteral",
|
|
12303
|
-
"offset":
|
|
12310
|
+
"offset": 77885,
|
|
12304
12311
|
"length": 13,
|
|
12305
12312
|
"value": "\"unspecified\""
|
|
12306
12313
|
},
|
|
12307
12314
|
{
|
|
12308
12315
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12309
12316
|
"kind": "BooleanLiteral",
|
|
12310
|
-
"offset":
|
|
12317
|
+
"offset": 78644,
|
|
12311
12318
|
"length": 5,
|
|
12312
12319
|
"value": "false"
|
|
12313
12320
|
},
|
|
12314
12321
|
{
|
|
12315
12322
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12316
12323
|
"kind": "BooleanLiteral",
|
|
12317
|
-
"offset":
|
|
12324
|
+
"offset": 80192,
|
|
12318
12325
|
"length": 4,
|
|
12319
12326
|
"value": "true"
|
|
12320
12327
|
},
|
|
12321
12328
|
{
|
|
12322
12329
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12323
12330
|
"kind": "IntegerLiteral",
|
|
12324
|
-
"offset":
|
|
12331
|
+
"offset": 80989,
|
|
12325
12332
|
"length": 1,
|
|
12326
12333
|
"value": "0"
|
|
12327
12334
|
},
|
|
12328
12335
|
{
|
|
12329
12336
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12330
12337
|
"kind": "BooleanLiteral",
|
|
12331
|
-
"offset":
|
|
12338
|
+
"offset": 98519,
|
|
12332
12339
|
"length": 4,
|
|
12333
12340
|
"value": "true"
|
|
12334
12341
|
},
|
|
12335
12342
|
{
|
|
12336
12343
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12337
12344
|
"kind": "BooleanLiteral",
|
|
12338
|
-
"offset":
|
|
12345
|
+
"offset": 105612,
|
|
12339
12346
|
"length": 4,
|
|
12340
12347
|
"value": "true"
|
|
12341
12348
|
},
|
|
12342
12349
|
{
|
|
12343
12350
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12344
12351
|
"kind": "BooleanLiteral",
|
|
12345
|
-
"offset":
|
|
12352
|
+
"offset": 109546,
|
|
12346
12353
|
"length": 4,
|
|
12347
12354
|
"value": "true"
|
|
12348
12355
|
},
|
|
12349
12356
|
{
|
|
12350
12357
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12351
12358
|
"kind": "IntegerLiteral",
|
|
12352
|
-
"offset":
|
|
12359
|
+
"offset": 110824,
|
|
12353
12360
|
"length": 1,
|
|
12354
12361
|
"value": "3"
|
|
12355
12362
|
},
|
|
12356
12363
|
{
|
|
12357
12364
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12358
12365
|
"kind": "FloatLiteral",
|
|
12359
|
-
"offset":
|
|
12366
|
+
"offset": 110896,
|
|
12360
12367
|
"length": 4,
|
|
12361
12368
|
"value": "0.20"
|
|
12362
12369
|
},
|
|
12363
12370
|
{
|
|
12364
12371
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12365
12372
|
"kind": "IntegerLiteral",
|
|
12366
|
-
"offset":
|
|
12373
|
+
"offset": 127701,
|
|
12367
12374
|
"length": 1,
|
|
12368
12375
|
"value": "2"
|
|
12369
12376
|
},
|
|
12370
12377
|
{
|
|
12371
12378
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12372
12379
|
"kind": "Dictionary",
|
|
12373
|
-
"offset":
|
|
12380
|
+
"offset": 127764,
|
|
12374
12381
|
"length": 181,
|
|
12375
12382
|
"value": "[(\"zero\", \"0\"), (\"oh\", \"0\"), (\"o\", \"0\"), (\"one\", \"1\"), (\"two\", \"2\"), (\"three\", \"3\"), (\"four\", \"4\"), (\"five\", \"5\"), (\"six\", \"6\"), (\"seven\", \"7\"), (\"eight\", \"8\"), (\"nine\", \"9\")]"
|
|
12376
12383
|
},
|
|
12377
12384
|
{
|
|
12378
12385
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12379
12386
|
"kind": "BooleanLiteral",
|
|
12380
|
-
"offset":
|
|
12387
|
+
"offset": 132574,
|
|
12381
12388
|
"length": 5,
|
|
12382
12389
|
"value": "false"
|
|
12383
12390
|
},
|
|
12384
12391
|
{
|
|
12385
12392
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12386
12393
|
"kind": "FloatLiteral",
|
|
12387
|
-
"offset":
|
|
12394
|
+
"offset": 150539,
|
|
12388
12395
|
"length": 3,
|
|
12389
12396
|
"value": "0.7"
|
|
12390
12397
|
},
|
|
12391
12398
|
{
|
|
12392
12399
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12393
12400
|
"kind": "IntegerLiteral",
|
|
12394
|
-
"offset":
|
|
12401
|
+
"offset": 196411,
|
|
12395
12402
|
"length": 1,
|
|
12396
12403
|
"value": "0"
|
|
12397
12404
|
},
|
|
12398
12405
|
{
|
|
12399
12406
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12400
12407
|
"kind": "Array",
|
|
12401
|
-
"offset":
|
|
12408
|
+
"offset": 196427,
|
|
12402
12409
|
"length": 2,
|
|
12403
12410
|
"value": "[]"
|
|
12404
12411
|
},
|
|
12405
12412
|
{
|
|
12406
12413
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12407
12414
|
"kind": "IntegerLiteral",
|
|
12408
|
-
"offset":
|
|
12415
|
+
"offset": 196479,
|
|
12409
12416
|
"length": 1,
|
|
12410
12417
|
"value": "0"
|
|
12411
12418
|
},
|
|
12412
12419
|
{
|
|
12413
12420
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12414
12421
|
"kind": "IntegerLiteral",
|
|
12415
|
-
"offset":
|
|
12422
|
+
"offset": 196618,
|
|
12416
12423
|
"length": 1,
|
|
12417
12424
|
"value": "0"
|
|
12418
12425
|
},
|
|
12419
12426
|
{
|
|
12420
12427
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12421
12428
|
"kind": "IntegerLiteral",
|
|
12422
|
-
"offset":
|
|
12429
|
+
"offset": 196843,
|
|
12423
12430
|
"length": 1,
|
|
12424
12431
|
"value": "0"
|
|
12425
12432
|
},
|
|
12426
12433
|
{
|
|
12427
12434
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
12428
12435
|
"kind": "Array",
|
|
12429
|
-
"offset":
|
|
12436
|
+
"offset": 197037,
|
|
12430
12437
|
"length": 2,
|
|
12431
12438
|
"value": "[]"
|
|
12432
12439
|
},
|