Search found 5 matches

by CityHunter71
Sat Nov 16, 2024 3:33 pm
Forum: General Discussion
Topic: PicoTTS Text-to-Speech component
Replies: 10
Views: 4782

Re: PicoTTS Text-to-Speech component

You are a Genius Jade!! I studied the library and discovered that you are one step ahead! Fantastic ! The picotts_set_idle_notify call is spectacular. Thank you I finally managed to get your code to work as Manage_components on an esp32-s3 that doesn't have a dsp on board and so I had to rewrite the...
by CityHunter71
Fri Nov 15, 2024 8:11 pm
Forum: General Discussion
Topic: PicoTTS Text-to-Speech component
Replies: 10
Views: 4782

Re: PicoTTS Text-to-Speech component

I finally managed to get your code to work as Manage_components on an esp32-s3 that doesn't have a dsp on board and so I had to rewrite the whole initialization component using the i2s module and figure out how to manage your libraries and now everything works fine. First of all I created a primitiv...
by CityHunter71
Tue Oct 22, 2024 1:04 pm
Forum: ESP-IDF
Topic: Unable to do simple audio transformations
Replies: 17
Views: 3188

Re: Unable to do simple audio transformations

For my opinion have 2 problem: 1) when inizialize i2s use a PHILIPS schema with this configuration (input and output): void init_microphone(void) { i2s_chan_config_t chan_cfg = I2S_CHANNEL_DEFAULT_CONFIG(I2S_NUM_AUTO, I2S_ROLE_MASTER); ESP_ERROR_CHECK(i2s_new_channel(&chan_cfg, NULL, &rx_handle)); i...
by CityHunter71
Sun Oct 20, 2024 7:16 pm
Forum: ESP-IDF
Topic: hidden menu item of idf.py menuconfig
Replies: 10
Views: 3553

Re: hidden menu item of idf.py menuconfig

Hi, i have same issue, but is only on Ubuntu system and works in windows system. on Ubuntu, with ESP-IDF 5.3.1 with clean install don't works on Windows with same ESP-IDF 5.3.1 with clean install idf.py Menuconfig show many options. I try to import form window into ubuntu sdkconfig sdkconfig.ci and ...
by CityHunter71
Sat Aug 17, 2024 6:29 pm
Forum: General Discussion
Topic: PicoTTS Text-to-Speech component
Replies: 10
Views: 4782

Re: PicoTTS Text-to-Speech component

Hi jmattsson, I am very happy that we share the goals of having a TTS working OFF-Line on ESP32 (I use an S3). I've been trying different solutions for months and now I'll try yours. I've tried porting Talkie and TTS from Arduino to ESP32, but the biggest difficulty is that many systems rely on proc...