bobh / ESP32Talkie

116 stars 9 forks source link

Creating custom coefficient tables #1

Closed ltloc115 closed 5 years ago

ltloc115 commented 5 years ago

Hi, I was trying to create the speech I need since the existing voices miss some of the words. And since you were able to put a whole song in your own example, can you explain how you did that? I have tried Audacity and created an unsigned 8 bit, 8kHz WAV file, which I then used HxD to get the coefficient table. However, it's pretty large and the sound isn't right.

bobh commented 5 years ago

Hi, For talkie, I just ported the C code in the library to work on the ESP32 instead of Arduino. So my effort was mainly just rewriting the interrupts. That speech example was from the original library—I included it just to show compatibility. There was an app for the Mac someone wrote that created the LPC coefficients from a wave file and I played around with that but can’t remember what the app was named or how successful it was. bobh

On Feb 11, 2019, at 12:03 AM, ltloc115 notifications@github.com wrote:

Hi, I was trying to create the speech I need since the existing voices miss some of the words. And since you were able to put a whole song in your own example, can you explain how you did that? I have tried Audacity and created an unsigned 8 bit, 8kHz WAV file, which I then used HxD to get the coefficient table. However, it's pretty large and the sound isn't right.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

ltloc115 commented 5 years ago

Ah, that's how it is. Well, thanks anyways. I'll try other ways I can think of then.