Transcribe a recording using a speech to text model
Last updated 16 days ago
returns
Convert spoken words from an AudioClip into text using powerful AI transcription models. Ideal for voice commands, user feedback, subtitles, or audio-driven gameplay systems.
AudioClip
Basic Usage
AudioClip recording = MicrophoneCapture.GetLastClip(); string result = await recording .GENTranscript() .SetModel(OpenAIModel.Whisper) .SetLanguage(SystemLanguage.Korean) .ExecuteAsync(); Debug.Log("Transcript: " + result);
You can also translate speech into English using GENTranslation.
GENTranslation.
string english = await recording .GENTranslation() .SetModel(OpenAIModel.Whisper) .ExecuteAsync();
Transcript