react-native-davoice-tts 1.0.207 → 1.0.208
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/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 +1943 -1929
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.private.swiftinterface +20 -20
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/arm64-apple-ios.swiftinterface +20 -20
- 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 +32 -18
- package/ios/TTSRNBridge/DavoiceTTS.xcframework/ios-arm64_x86_64-simulator/DavoiceTTS.framework/Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json +32 -18
- 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
|
@@ -14,26 +14,6 @@ import _StringProcessing
|
|
|
14
14
|
import _SwiftConcurrencyShims
|
|
15
15
|
import onnxruntime_objc
|
|
16
16
|
import phonemes
|
|
17
|
-
@objc public protocol STTDelegate {
|
|
18
|
-
@objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
|
|
19
|
-
}
|
|
20
|
-
@objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
|
|
21
|
-
@objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
|
|
22
|
-
@objc final public var continuous: Swift.Bool
|
|
23
|
-
@objc public static let supportedEvents: [Swift.String]
|
|
24
|
-
@objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
|
|
25
|
-
@objc final public func isRecognizing() -> Swift.Bool
|
|
26
|
-
@objc final public func pauseMicrophone()
|
|
27
|
-
@objc final public func unPauseMicrophone()
|
|
28
|
-
@objc final public func startSpeech(localeStr: Swift.String?)
|
|
29
|
-
@objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
30
|
-
@objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
31
|
-
@objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
32
|
-
@objc final public func teardown()
|
|
33
|
-
@objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
|
|
34
|
-
@objc override dynamic public init()
|
|
35
|
-
@objc deinit
|
|
36
|
-
}
|
|
37
17
|
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
38
18
|
public typealias IsEngineReady = () -> Swift.Bool
|
|
39
19
|
public typealias useOnlyEnginePlayback = () -> Swift.Bool
|
|
@@ -72,3 +52,23 @@ public enum AudioPlaybackHook {
|
|
|
72
52
|
final public func synthesize(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID, terminal: Swift.Character? = nil) throws -> (AVFAudio.AVAudioPCMBuffer, Swift.Int)
|
|
73
53
|
@objc final public func synthesize_top(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID) throws -> AVFAudio.AVAudioPCMBuffer
|
|
74
54
|
}
|
|
55
|
+
@objc public protocol STTDelegate {
|
|
56
|
+
@objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
|
|
57
|
+
}
|
|
58
|
+
@objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
|
|
59
|
+
@objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
|
|
60
|
+
@objc final public var continuous: Swift.Bool
|
|
61
|
+
@objc public static let supportedEvents: [Swift.String]
|
|
62
|
+
@objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
|
|
63
|
+
@objc final public func isRecognizing() -> Swift.Bool
|
|
64
|
+
@objc final public func pauseMicrophone()
|
|
65
|
+
@objc final public func unPauseMicrophone()
|
|
66
|
+
@objc final public func startSpeech(localeStr: Swift.String?)
|
|
67
|
+
@objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
68
|
+
@objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
69
|
+
@objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
70
|
+
@objc final public func teardown()
|
|
71
|
+
@objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
|
|
72
|
+
@objc override dynamic public init()
|
|
73
|
+
@objc deinit
|
|
74
|
+
}
|
|
@@ -14,26 +14,6 @@ import _StringProcessing
|
|
|
14
14
|
import _SwiftConcurrencyShims
|
|
15
15
|
import onnxruntime_objc
|
|
16
16
|
import phonemes
|
|
17
|
-
@objc public protocol STTDelegate {
|
|
18
|
-
@objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
|
|
19
|
-
}
|
|
20
|
-
@objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
|
|
21
|
-
@objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
|
|
22
|
-
@objc final public var continuous: Swift.Bool
|
|
23
|
-
@objc public static let supportedEvents: [Swift.String]
|
|
24
|
-
@objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
|
|
25
|
-
@objc final public func isRecognizing() -> Swift.Bool
|
|
26
|
-
@objc final public func pauseMicrophone()
|
|
27
|
-
@objc final public func unPauseMicrophone()
|
|
28
|
-
@objc final public func startSpeech(localeStr: Swift.String?)
|
|
29
|
-
@objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
30
|
-
@objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
31
|
-
@objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
32
|
-
@objc final public func teardown()
|
|
33
|
-
@objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
|
|
34
|
-
@objc override dynamic public init()
|
|
35
|
-
@objc deinit
|
|
36
|
-
}
|
|
37
17
|
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
38
18
|
public typealias IsEngineReady = () -> Swift.Bool
|
|
39
19
|
public typealias useOnlyEnginePlayback = () -> Swift.Bool
|
|
@@ -72,3 +52,23 @@ public enum AudioPlaybackHook {
|
|
|
72
52
|
final public func synthesize(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID, terminal: Swift.Character? = nil) throws -> (AVFAudio.AVAudioPCMBuffer, Swift.Int)
|
|
73
53
|
@objc final public func synthesize_top(_ text: Swift.String, speakerId: Swift.Int32 = 0, token: Foundation.UUID) throws -> AVFAudio.AVAudioPCMBuffer
|
|
74
54
|
}
|
|
55
|
+
@objc public protocol STTDelegate {
|
|
56
|
+
@objc func stt(_ stt: DavoiceTTS.STT, didEmitEvent name: Swift.String, body: [Swift.String : Any]?)
|
|
57
|
+
}
|
|
58
|
+
@objc @_inheritsConvenienceInitializers @objcMembers final public class STT : ObjectiveC.NSObject, Speech.SFSpeechRecognizerDelegate {
|
|
59
|
+
@objc weak final public var delegate: (any DavoiceTTS.STTDelegate)?
|
|
60
|
+
@objc final public var continuous: Swift.Bool
|
|
61
|
+
@objc public static let supportedEvents: [Swift.String]
|
|
62
|
+
@objc final public func isSpeechAvailable(_ completion: @escaping (Swift.Bool) -> Swift.Void)
|
|
63
|
+
@objc final public func isRecognizing() -> Swift.Bool
|
|
64
|
+
@objc final public func pauseMicrophone()
|
|
65
|
+
@objc final public func unPauseMicrophone()
|
|
66
|
+
@objc final public func startSpeech(localeStr: Swift.String?)
|
|
67
|
+
@objc final public func stopSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
68
|
+
@objc final public func cancelSpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
69
|
+
@objc final public func destroySpeech(_ completion: ((Swift.Bool) -> Swift.Void)? = nil)
|
|
70
|
+
@objc final public func teardown()
|
|
71
|
+
@objc final public func speechRecognizer(_ speechRecognizer: Speech.SFSpeechRecognizer, availabilityDidChange available: Swift.Bool)
|
|
72
|
+
@objc override dynamic public init()
|
|
73
|
+
@objc deinit
|
|
74
|
+
}
|
|
Binary file
|
|
@@ -3058,129 +3058,143 @@
|
|
|
3058
3058
|
"length": 1,
|
|
3059
3059
|
"value": "0"
|
|
3060
3060
|
},
|
|
3061
|
+
{
|
|
3062
|
+
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3063
|
+
"kind": "BooleanLiteral",
|
|
3064
|
+
"offset": 2103,
|
|
3065
|
+
"length": 5,
|
|
3066
|
+
"value": "false"
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3070
|
+
"kind": "BooleanLiteral",
|
|
3071
|
+
"offset": 2139,
|
|
3072
|
+
"length": 5,
|
|
3073
|
+
"value": "false"
|
|
3074
|
+
},
|
|
3061
3075
|
{
|
|
3062
3076
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3063
3077
|
"kind": "IntegerLiteral",
|
|
3064
|
-
"offset":
|
|
3078
|
+
"offset": 2269,
|
|
3065
3079
|
"length": 1,
|
|
3066
3080
|
"value": "0"
|
|
3067
3081
|
},
|
|
3068
3082
|
{
|
|
3069
3083
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3070
3084
|
"kind": "IntegerLiteral",
|
|
3071
|
-
"offset":
|
|
3085
|
+
"offset": 2320,
|
|
3072
3086
|
"length": 1,
|
|
3073
3087
|
"value": "0"
|
|
3074
3088
|
},
|
|
3075
3089
|
{
|
|
3076
3090
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3077
3091
|
"kind": "StringLiteral",
|
|
3078
|
-
"offset":
|
|
3092
|
+
"offset": 2363,
|
|
3079
3093
|
"length": 6,
|
|
3080
3094
|
"value": "\"cold\""
|
|
3081
3095
|
},
|
|
3082
3096
|
{
|
|
3083
3097
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3084
3098
|
"kind": "BooleanLiteral",
|
|
3085
|
-
"offset":
|
|
3099
|
+
"offset": 2435,
|
|
3086
3100
|
"length": 5,
|
|
3087
3101
|
"value": "false"
|
|
3088
3102
|
},
|
|
3089
3103
|
{
|
|
3090
3104
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3091
3105
|
"kind": "BooleanLiteral",
|
|
3092
|
-
"offset":
|
|
3106
|
+
"offset": 2739,
|
|
3093
3107
|
"length": 5,
|
|
3094
3108
|
"value": "false"
|
|
3095
3109
|
},
|
|
3096
3110
|
{
|
|
3097
3111
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3098
3112
|
"kind": "IntegerLiteral",
|
|
3099
|
-
"offset":
|
|
3113
|
+
"offset": 2817,
|
|
3100
3114
|
"length": 1,
|
|
3101
3115
|
"value": "0"
|
|
3102
3116
|
},
|
|
3103
3117
|
{
|
|
3104
3118
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3105
3119
|
"kind": "FloatLiteral",
|
|
3106
|
-
"offset":
|
|
3120
|
+
"offset": 2911,
|
|
3107
3121
|
"length": 3,
|
|
3108
3122
|
"value": "0.3"
|
|
3109
3123
|
},
|
|
3110
3124
|
{
|
|
3111
3125
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3112
3126
|
"kind": "IntegerLiteral",
|
|
3113
|
-
"offset":
|
|
3127
|
+
"offset": 2992,
|
|
3114
3128
|
"length": 1,
|
|
3115
3129
|
"value": "0"
|
|
3116
3130
|
},
|
|
3117
3131
|
{
|
|
3118
3132
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3119
3133
|
"kind": "BooleanLiteral",
|
|
3120
|
-
"offset":
|
|
3134
|
+
"offset": 3053,
|
|
3121
3135
|
"length": 5,
|
|
3122
3136
|
"value": "false"
|
|
3123
3137
|
},
|
|
3124
3138
|
{
|
|
3125
3139
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3126
3140
|
"kind": "Array",
|
|
3127
|
-
"offset":
|
|
3141
|
+
"offset": 3117,
|
|
3128
3142
|
"length": 2,
|
|
3129
3143
|
"value": "[]"
|
|
3130
3144
|
},
|
|
3131
3145
|
{
|
|
3132
3146
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3133
3147
|
"kind": "StringLiteral",
|
|
3134
|
-
"offset":
|
|
3148
|
+
"offset": 3169,
|
|
3135
3149
|
"length": 16,
|
|
3136
3150
|
"value": "\"stt.tts.serial\""
|
|
3137
3151
|
},
|
|
3138
3152
|
{
|
|
3139
3153
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3140
3154
|
"kind": "BooleanLiteral",
|
|
3141
|
-
"offset":
|
|
3155
|
+
"offset": 3258,
|
|
3142
3156
|
"length": 5,
|
|
3143
3157
|
"value": "false"
|
|
3144
3158
|
},
|
|
3145
3159
|
{
|
|
3146
3160
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3147
3161
|
"kind": "BooleanLiteral",
|
|
3148
|
-
"offset":
|
|
3162
|
+
"offset": 3371,
|
|
3149
3163
|
"length": 5,
|
|
3150
3164
|
"value": "false"
|
|
3151
3165
|
},
|
|
3152
3166
|
{
|
|
3153
3167
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3154
3168
|
"kind": "Array",
|
|
3155
|
-
"offset":
|
|
3169
|
+
"offset": 4033,
|
|
3156
3170
|
"length": 203,
|
|
3157
3171
|
"value": "[\"onSpeechResults\", \"onSpeechStart\", \"onSpeechPartialResults\", \"onSpeechError\", \"onSpeechEnd\", \"onSpeechRecognized\", \"onSpeechVolumeChanged\"]"
|
|
3158
3172
|
},
|
|
3159
3173
|
{
|
|
3160
3174
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3161
3175
|
"kind": "IntegerLiteral",
|
|
3162
|
-
"offset":
|
|
3176
|
+
"offset": 4273,
|
|
3163
3177
|
"length": 1,
|
|
3164
3178
|
"value": "0"
|
|
3165
3179
|
},
|
|
3166
3180
|
{
|
|
3167
3181
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3168
3182
|
"kind": "IntegerLiteral",
|
|
3169
|
-
"offset":
|
|
3183
|
+
"offset": 4464,
|
|
3170
3184
|
"length": 1,
|
|
3171
3185
|
"value": "0"
|
|
3172
3186
|
},
|
|
3173
3187
|
{
|
|
3174
3188
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3175
3189
|
"kind": "BooleanLiteral",
|
|
3176
|
-
"offset":
|
|
3190
|
+
"offset": 12819,
|
|
3177
3191
|
"length": 4,
|
|
3178
3192
|
"value": "true"
|
|
3179
3193
|
},
|
|
3180
3194
|
{
|
|
3181
3195
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3182
3196
|
"kind": "FloatLiteral",
|
|
3183
|
-
"offset":
|
|
3197
|
+
"offset": 36519,
|
|
3184
3198
|
"length": 3,
|
|
3185
3199
|
"value": "0.7"
|
|
3186
3200
|
},
|
|
@@ -3058,129 +3058,143 @@
|
|
|
3058
3058
|
"length": 1,
|
|
3059
3059
|
"value": "0"
|
|
3060
3060
|
},
|
|
3061
|
+
{
|
|
3062
|
+
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3063
|
+
"kind": "BooleanLiteral",
|
|
3064
|
+
"offset": 2103,
|
|
3065
|
+
"length": 5,
|
|
3066
|
+
"value": "false"
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3070
|
+
"kind": "BooleanLiteral",
|
|
3071
|
+
"offset": 2139,
|
|
3072
|
+
"length": 5,
|
|
3073
|
+
"value": "false"
|
|
3074
|
+
},
|
|
3061
3075
|
{
|
|
3062
3076
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3063
3077
|
"kind": "IntegerLiteral",
|
|
3064
|
-
"offset":
|
|
3078
|
+
"offset": 2269,
|
|
3065
3079
|
"length": 1,
|
|
3066
3080
|
"value": "0"
|
|
3067
3081
|
},
|
|
3068
3082
|
{
|
|
3069
3083
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3070
3084
|
"kind": "IntegerLiteral",
|
|
3071
|
-
"offset":
|
|
3085
|
+
"offset": 2320,
|
|
3072
3086
|
"length": 1,
|
|
3073
3087
|
"value": "0"
|
|
3074
3088
|
},
|
|
3075
3089
|
{
|
|
3076
3090
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3077
3091
|
"kind": "StringLiteral",
|
|
3078
|
-
"offset":
|
|
3092
|
+
"offset": 2363,
|
|
3079
3093
|
"length": 6,
|
|
3080
3094
|
"value": "\"cold\""
|
|
3081
3095
|
},
|
|
3082
3096
|
{
|
|
3083
3097
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3084
3098
|
"kind": "BooleanLiteral",
|
|
3085
|
-
"offset":
|
|
3099
|
+
"offset": 2435,
|
|
3086
3100
|
"length": 5,
|
|
3087
3101
|
"value": "false"
|
|
3088
3102
|
},
|
|
3089
3103
|
{
|
|
3090
3104
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3091
3105
|
"kind": "BooleanLiteral",
|
|
3092
|
-
"offset":
|
|
3106
|
+
"offset": 2739,
|
|
3093
3107
|
"length": 5,
|
|
3094
3108
|
"value": "false"
|
|
3095
3109
|
},
|
|
3096
3110
|
{
|
|
3097
3111
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3098
3112
|
"kind": "IntegerLiteral",
|
|
3099
|
-
"offset":
|
|
3113
|
+
"offset": 2817,
|
|
3100
3114
|
"length": 1,
|
|
3101
3115
|
"value": "0"
|
|
3102
3116
|
},
|
|
3103
3117
|
{
|
|
3104
3118
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3105
3119
|
"kind": "FloatLiteral",
|
|
3106
|
-
"offset":
|
|
3120
|
+
"offset": 2911,
|
|
3107
3121
|
"length": 3,
|
|
3108
3122
|
"value": "0.3"
|
|
3109
3123
|
},
|
|
3110
3124
|
{
|
|
3111
3125
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3112
3126
|
"kind": "IntegerLiteral",
|
|
3113
|
-
"offset":
|
|
3127
|
+
"offset": 2992,
|
|
3114
3128
|
"length": 1,
|
|
3115
3129
|
"value": "0"
|
|
3116
3130
|
},
|
|
3117
3131
|
{
|
|
3118
3132
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3119
3133
|
"kind": "BooleanLiteral",
|
|
3120
|
-
"offset":
|
|
3134
|
+
"offset": 3053,
|
|
3121
3135
|
"length": 5,
|
|
3122
3136
|
"value": "false"
|
|
3123
3137
|
},
|
|
3124
3138
|
{
|
|
3125
3139
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3126
3140
|
"kind": "Array",
|
|
3127
|
-
"offset":
|
|
3141
|
+
"offset": 3117,
|
|
3128
3142
|
"length": 2,
|
|
3129
3143
|
"value": "[]"
|
|
3130
3144
|
},
|
|
3131
3145
|
{
|
|
3132
3146
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3133
3147
|
"kind": "StringLiteral",
|
|
3134
|
-
"offset":
|
|
3148
|
+
"offset": 3169,
|
|
3135
3149
|
"length": 16,
|
|
3136
3150
|
"value": "\"stt.tts.serial\""
|
|
3137
3151
|
},
|
|
3138
3152
|
{
|
|
3139
3153
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3140
3154
|
"kind": "BooleanLiteral",
|
|
3141
|
-
"offset":
|
|
3155
|
+
"offset": 3258,
|
|
3142
3156
|
"length": 5,
|
|
3143
3157
|
"value": "false"
|
|
3144
3158
|
},
|
|
3145
3159
|
{
|
|
3146
3160
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3147
3161
|
"kind": "BooleanLiteral",
|
|
3148
|
-
"offset":
|
|
3162
|
+
"offset": 3371,
|
|
3149
3163
|
"length": 5,
|
|
3150
3164
|
"value": "false"
|
|
3151
3165
|
},
|
|
3152
3166
|
{
|
|
3153
3167
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3154
3168
|
"kind": "Array",
|
|
3155
|
-
"offset":
|
|
3169
|
+
"offset": 4033,
|
|
3156
3170
|
"length": 203,
|
|
3157
3171
|
"value": "[\"onSpeechResults\", \"onSpeechStart\", \"onSpeechPartialResults\", \"onSpeechError\", \"onSpeechEnd\", \"onSpeechRecognized\", \"onSpeechVolumeChanged\"]"
|
|
3158
3172
|
},
|
|
3159
3173
|
{
|
|
3160
3174
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3161
3175
|
"kind": "IntegerLiteral",
|
|
3162
|
-
"offset":
|
|
3176
|
+
"offset": 4273,
|
|
3163
3177
|
"length": 1,
|
|
3164
3178
|
"value": "0"
|
|
3165
3179
|
},
|
|
3166
3180
|
{
|
|
3167
3181
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3168
3182
|
"kind": "IntegerLiteral",
|
|
3169
|
-
"offset":
|
|
3183
|
+
"offset": 4464,
|
|
3170
3184
|
"length": 1,
|
|
3171
3185
|
"value": "0"
|
|
3172
3186
|
},
|
|
3173
3187
|
{
|
|
3174
3188
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3175
3189
|
"kind": "BooleanLiteral",
|
|
3176
|
-
"offset":
|
|
3190
|
+
"offset": 12819,
|
|
3177
3191
|
"length": 4,
|
|
3178
3192
|
"value": "true"
|
|
3179
3193
|
},
|
|
3180
3194
|
{
|
|
3181
3195
|
"filePath": "\/Volumes\/T9\/projects\/DavoiceTTSPrivate\/Sources\/DaVoiceSTT.swift",
|
|
3182
3196
|
"kind": "FloatLiteral",
|
|
3183
|
-
"offset":
|
|
3197
|
+
"offset": 36519,
|
|
3184
3198
|
"length": 3,
|
|
3185
3199
|
"value": "0.7"
|
|
3186
3200
|
},
|
|
Binary file
|
|
Binary file
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
Uh4vDxnm5Ya8iedN7438kWjH4uE=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
36
36
|
<data>
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
</data>
|
|
47
47
|
<key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
|
48
48
|
<data>
|
|
49
|
-
|
|
49
|
+
Jx/sgPMVSIbQ9MNVPGvRwD1oEQo=
|
|
50
50
|
</data>
|
|
51
51
|
<key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
52
52
|
<data>
|
|
53
|
-
|
|
53
|
+
Uh4vDxnm5Ya8iedN7438kWjH4uE=
|
|
54
54
|
</data>
|
|
55
55
|
<key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
56
56
|
<data>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
</data>
|
|
67
67
|
<key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
|
68
68
|
<data>
|
|
69
|
-
|
|
69
|
+
6g093VbEMhApoVRbVEtgUlanDbo=
|
|
70
70
|
</data>
|
|
71
71
|
<key>Modules/module.modulemap</key>
|
|
72
72
|
<data>
|
|
@@ -134,11 +134,11 @@
|
|
|
134
134
|
<dict>
|
|
135
135
|
<key>hash</key>
|
|
136
136
|
<data>
|
|
137
|
-
|
|
137
|
+
Uh4vDxnm5Ya8iedN7438kWjH4uE=
|
|
138
138
|
</data>
|
|
139
139
|
<key>hash2</key>
|
|
140
140
|
<data>
|
|
141
|
-
|
|
141
|
+
/DkE0b3gruuxJeCZNbWV7TO/yFpKmIUatApJ+8MGLPg=
|
|
142
142
|
</data>
|
|
143
143
|
</dict>
|
|
144
144
|
<key>Modules/DavoiceTTS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -178,22 +178,22 @@
|
|
|
178
178
|
<dict>
|
|
179
179
|
<key>hash</key>
|
|
180
180
|
<data>
|
|
181
|
-
|
|
181
|
+
Jx/sgPMVSIbQ9MNVPGvRwD1oEQo=
|
|
182
182
|
</data>
|
|
183
183
|
<key>hash2</key>
|
|
184
184
|
<data>
|
|
185
|
-
|
|
185
|
+
DRFiz1ig+oi2hizsNZemIm+ldHAwUEf0SBqgSjPXthc=
|
|
186
186
|
</data>
|
|
187
187
|
</dict>
|
|
188
188
|
<key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
189
189
|
<dict>
|
|
190
190
|
<key>hash</key>
|
|
191
191
|
<data>
|
|
192
|
-
|
|
192
|
+
Uh4vDxnm5Ya8iedN7438kWjH4uE=
|
|
193
193
|
</data>
|
|
194
194
|
<key>hash2</key>
|
|
195
195
|
<data>
|
|
196
|
-
|
|
196
|
+
/DkE0b3gruuxJeCZNbWV7TO/yFpKmIUatApJ+8MGLPg=
|
|
197
197
|
</data>
|
|
198
198
|
</dict>
|
|
199
199
|
<key>Modules/DavoiceTTS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -233,11 +233,11 @@
|
|
|
233
233
|
<dict>
|
|
234
234
|
<key>hash</key>
|
|
235
235
|
<data>
|
|
236
|
-
|
|
236
|
+
6g093VbEMhApoVRbVEtgUlanDbo=
|
|
237
237
|
</data>
|
|
238
238
|
<key>hash2</key>
|
|
239
239
|
<data>
|
|
240
|
-
|
|
240
|
+
QmQBVhIMn3dCq9HxdmM+mGNSvrkpyfN9vNLaVY3u1EU=
|
|
241
241
|
</data>
|
|
242
242
|
</dict>
|
|
243
243
|
<key>Modules/module.modulemap</key>
|