sfspeechrecognizer Questions
8
I am hacking a little project using iOS 10 built-in speech recognition. I have working results using device's microphone, my speech is recognized very accurately.
My problem is that recognition ta...
Migraine asked 1/3, 2017 at 11:34
3
I have updated to macOS Monterrey and my code for SFSPeechRecognizer just broke. I get this error if I try to configure an offline speech recognizer for macOS
Error Domain=kLSRErrorDomain Code=102 ...
Amandaamandi asked 8/4, 2022 at 13:4
2
I am building a search that supports voice recognition and transforms speech to text so I am using SFSpeechRecognizer. But the problem is that I need to support multiple languages at the same time ...
Jaynes asked 23/5, 2019 at 8:7
4
Solved
I got this error while implementing speech to text:
Terminating app due to uncaught exception
'com.apple.coreaudio.avfaudio', reason: 'required condition is false:
_recordingTap == nil'
and:...
Pfeifer asked 3/1, 2017 at 7:11
7
I am implementing Speech Recognition in my app. When I first present the view controller with the speech recognition logic, everything works fine. However, when I try present the view controller ag...
Vivie asked 23/1, 2017 at 11:31
1
I've just updated to macOS 10.15.4 and every time I check if on-device speech recognition is available I get back false. This was working on 10.15.3.
speechRecognizer?.supportsOnDeviceRecognition ...
Schulte asked 29/3, 2020 at 20:26
1
I'm trying to transcribe local audio files in my app.
Short files recognised fine, but if audio is more than about 15 min it is not. Console immediately shows this error:
2020-01-17 12:57:07.528...
Inadvertent asked 17/1, 2020 at 11:32
0
Inspired by this question (which didn't receive an answer).
Context: I have a (swiftUI) view that has 2 buttons and a textfield. One button turns on the mic and uses SFSpeechrecognizer to turn spee...
Chuchuah asked 12/12, 2020 at 3:25
2
Solved
I am trying Speech recognition sample. If I started to recognise my speech via microphone, then I tried to get iPhone's voice of that recognised text. It is working. But, voice is too low. Can u gu...
Notions asked 28/7, 2017 at 11:8
1
Solved
According to the Apple documents, there is a limit to the number of requests that SFSpeechRecognizer can send.
Be prepared to handle failures caused by speech recognition limits. Because speech ...
Bawdyhouse asked 30/11, 2019 at 14:57
1
Solved
I'm attempting to solve this problem: SFSpeechRecognizer - detect end of utterance
The problem is that SFSpeechRecognizer callback fires every time the detected speech string changes, but it only ...
Onomatopoeia asked 22/7, 2019 at 14:51
1
I am facing an issue with the SFSpeechRecognizer. After few seconds of starting the application I start getting the error
Error Domain=kAFAssistantErrorDomain Code=209 "(null)"" and "Error
Dom...
Fervidor asked 4/9, 2017 at 7:19
3
I'm studying the Speech Recognition on the iOS, but Every time I call the method [_recognitionRequest endAudio] , it always got an error in recognitionTaskWithRequest: the message is in the bottom....
Sikorski asked 8/10, 2016 at 1:16
0
I have started getting a crash that did not previously happen with initialization of recording with the error:
[avae] AVAEInternal.h:70:_AVAE_Check: required condition is false: [AVAudioIONodeImpl...
Teresaterese asked 15/5, 2019 at 16:37
1
I use SFSpeechRecognizer, basically to work.
1.But sometimes the following error occurs.
And mostly before I did not execute avStop().
[Utility] +[AFAggregator logDictationFailedWithError:] Er...
Auroreaurous asked 8/1, 2018 at 3:35
5
Solved
So I built a simple app that does speech recognition using SFSpeechRecognizer and displays the converted speech to text in a UITextView on the screen. Now I'm trying to make the phone speak that di...
Gelasias asked 26/10, 2016 at 19:33
1
SFSpeechRecognizer is very inaccurate for my use case. I have tried setting contextual strings as I have an array of words against which to match with. But it is still not able to do so. Do I need ...
Jarl asked 21/10, 2016 at 6:56
1
Solved
I am using ios speech recognition and it does very well whenever there is enough context. I am using speech recognition only for numeric input and am seeing issues. For example, with single digit n...
Oakum asked 28/8, 2017 at 7:26
1
I have a SFSpeechRecognizer set up from Apple's sample app
https://developer.apple.com/library/content/samplecode/SpeakToMe/Introduction/Intro.html
I was wondering if it was possible to have the r...
Fallal asked 4/11, 2016 at 8:47
0
I'm using iOS 10 new Speech API, and I'm setting the SFSpeechRecognitionRequest's contextualStrings. However the words have a very low probability - I guess - so they don't get recognized. Is there...
Granlund asked 23/3, 2017 at 19:15
1
Solved
I try using speech recognition as below
let urlpath = Bundle.main().pathForResource("myvoice2", ofType: "m4a")
let url:URL = URL.init(fileURLWithPath: urlpath!)
let recognizer = SFSpeechRecog...
Aronarondel asked 14/6, 2016 at 7:42
1
© 2022 - 2024 — McMap. All rights reserved.