unity-sentis
ONNX
PB Unity commited on
Commit
608e02a
1 Parent(s): 23787a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -1,3 +1,17 @@
1
  ---
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
  ---
4
+
5
+ # Jets Text-to-Speech Model validated for Unity Sentis
6
+ This is a text to speech model called [Jets](https://huggingface.co/imdanboy/jets). It takes in a text string which you convert to phonemes using a dictionary and then outputs a wav to play the voice.
7
+
8
+ ## How to Use
9
+ * Create a new scene in Unity 2024
10
+ * Install `com.unity.sentis` package
11
+ * Put the c# script on the Main Camera
12
+ * Add an AudioSource component on the Main Camera
13
+ * Set the `inputText` string for what you want it to say
14
+ * Press play
15
+
16
+ ## Information
17
+ This version using a phoneme dictionary to convert the text into a string of phonemes. There are other ways to do this, for example using another model, or heuristics.