Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser

Quick Information

A sample Godot project of using NeMoOnnxSharp. NeMoOnnxSharp is a neural speech engine which is based on NVIDIA NeMo and ONNX Runtime written purely in C#. This project supports VAD (voice activation detection), speech recognition and speech synthesis.
NeMoOnnxGodot
A sample application of using NeMoOnnxSharp with Godot. This supports VAD (voice activation detection), speech recognition and speech synthesis.
Requirement
- Visual Studio 2022
- Godot 4.1.2
- Windows 11 (or versions for which Godot supports)
Building
- Open the directory with Godot Editor
- Open the solution with Visual Studio 2022
- From menu Build -> Build Solution
- Then run with debugger (F5) from Godot Editor or export to Windows exe.
Running
English and German are supported.
The applicatin needs model files downloaded from GitHub. Click "Download models" button to download them.
Click Transcribe button to start VAD and speech recognition using a microphone. Click Speak to generate audio from the text.
Importing to your project
NeMoOnnxSharp needs ONNX Runtime NuGet package. Add these to your .csproj
file.
<ItemGroup>
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.16.1" />
<PackageReference Include="NeMoOnnxSharp" Version="1.3.0" />
</ItemGroup>
Script.cs
is the main script to use. Attach it to a Godot node in the inspector.
A sample Godot project of using NeMoOnnxSharp. NeMoOnnxSharp is a neural speech engine which is based on NVIDIA NeMo and ONNX Runtime written purely in C#. This project supports VAD (voice activation detection), speech recognition and speech synthesis.
Reviews
Quick Information

A sample Godot project of using NeMoOnnxSharp. NeMoOnnxSharp is a neural speech engine which is based on NVIDIA NeMo and ONNX Runtime written purely in C#. This project supports VAD (voice activation detection), speech recognition and speech synthesis.