Skip to content

Commit

Permalink
License meta
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtrizer committed May 29, 2024
1 parent db4168a commit 7e89b7f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions LICENSE.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion PiperExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async void Run()
piper ??= await Piper.LoadPiper(fullEspeakDataPath);
voice ??= await PiperVoice.LoadPiperVoice(piper, fullModelPath);
piperSpeaker ??= new PiperSpeaker(voice);
_ = piperSpeaker.ContinueSpeach(text).ContinueWith((x) => Debug.Log($"Generation finished with status: {x.Status}"));
_ = piperSpeaker.ContinueSpeach(text).ContinueWith(x => Debug.Log($"Generation finished with status: {x.Status}"));
audioSource.clip = piperSpeaker.AudioClip;
audioSource.loop = true;
audioSource.Play();
Expand Down

0 comments on commit 7e89b7f

Please # to comment.