AVFoundation 和语音转文本

问题描述 投票:0回答:0

我正在试用带有语音识别功能的 Native iOS Speech To Text,它只有几行代码来转录语音。

   Button {                            
        player.seek(to: .zero)
        player.play()

        speechRecognizer.reset()
        speechRecognizer.transcribe()
                                                                        
    } label: {
         Text("Start").font(.system(size: 16))
         .foregroundColor(.gray)
    }

每次按下按钮后,使用 AVFoundation 的播放声音将不起作用。

有类似经历的吗?有办法解决这个问题吗?

swift swiftui avfoundation
© www.soinside.com 2019 - 2024. All rights reserved.