gpt4 book ai didi

ios - 设备上的语音识别是一回事吗?

转载 作者:行者123 更新时间:2023-11-28 20:51:05 29 4
gpt4 key购买 nike

iOS 13 中的新功能,你应该可以这样说(import Speech):

let req = SFSpeechAudioBufferRecognitionRequest()
let loc = Locale(identifier: "en-US")
guard let rec = SFSpeechRecognizer(locale:loc)
else {print("no recognizer"); return}
print("rec isAvailable says: \(rec.isAvailable)")
if rec.supportsOnDeviceRecognition {
print("on device recognition")
req.requiresOnDeviceRecognition = true
} else {
print("no on device recognition")
}

问题是我在所有设备上都得到“no on device recognition”。我可以很好地进行语音识别;我只是不能进行设备上的语音识别。这个功能是真实存在的,还是仅仅是 Apple 的愿​​望?

最佳答案

您可能遇到了 supportsOnDeviceRecognition 的已知问题在 13.1。来自iOS/iPadOS 13.1 Release Notes :

The supportsOnDeviceRecognition property always returns false the first time it’s accessed. After a few seconds, accessing it again returns the correct value. (47822242)

关于ios - 设备上的语音识别是一回事吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58276225/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com