SwiftUI

SwiftUI | Transcribing speech to text

ziziDev 2024. 8. 6. 13:56
반응형

 

Request authorization to device hardware

Scrumdinger는 오디오 녹음에서 회의 전사를 생성하므로, 기기의 마이크 접근이 필요합니다. 보안 기능으로 인해, 사용자는 개인 정보나 민감한 기기 하드웨어에 대한 접근을 명시적으로 허용해야 합니다. 사용자 데이터 보호에 대한 자세한 내용은 Protecting the User’s Privacy 문서를 참조하세요.

이 섹션에서는 사용자가 접근을 허용하거나 거부하도록 요청하는 사용 설명을 추가할 것입니다.

<key>NSSpeechRecognitionUsageDescription</key>
<string>You can view a text transcription of your meeting in the app.</string>
<key>NSMicrophoneUsageDescription</key>
<string>Audio is recorded to transcribe the meeting. Audio recordings are discarded after transcription.</string>

 

 

사용자로부터 마이크와 음성 인식에 대한 접근 권한을 요청할 때 사용합니다

 

앱이 음성 인식을 사용해서 회의의 텍스트 전사를 표시할 것인지 사용자에게 알려줍니다

Select the Privacy - Speech Recognition Usage Description

- “You can view a text transcription of your meeting in the app.”

 

앱이 회의를 전달하기 위해 오디오를 녹음할 것이고 전달이 완료된 후 오디오 녹음이 폐기될 것임을 사용자에게 알려주는것 입니다

Add the Privacy - Microphone Usage Description

- “Audio is recorded to transcribe the meeting. Audio recordings are discarded after transcription.”

 

 

 

 

반응형

'SwiftUI' 카테고리의 다른 글

SwiftUI | Hello SwiftUI -2  (1) 2024.08.07
SwiftUI | Hello SwiftUI -1  (0) 2024.08.07
SwiftUI | Examining data flow in Scrumdinger  (0) 2024.08.06
SwiftUI | Adopting new API features  (0) 2024.08.06
Adopting Swift concurrency  (0) 2024.08.05