DECtalkMini's icon

DECtalkMini 1.2.0 Misc 4.0 Community

Submitted by user ByteSizedFox; MIT; 2026-02-27

This tool provides access to DECtalk Text To Speech in your project!

add it into your addons folder and use it as such

```
extends Node2D

var dectalk = DECtalkMini.new()

func _callback(iwave, length, phoneme) -> void:
print(iwave) # waveform comes out here in 6.4ms callback chunks

# Called when the node enters the scene tree for the first time.
func _ready() -> void:
dectalk.init(_callback)
dectalk.start("Hello World", DECtalkMini.WAVE_FORMAT_1M16)
dectalk.sync() # force audio out here

# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
```


View files Download Recent Edits