Schmurtz

Results 107 comments of Schmurtz

> @sh-user I tested on ESP32 with 16K buffer. That might be a reason. I confirm this behavior with Google TTS : - Tested on ESP32 : it seems that...

After some investigation, I've found where is the problem : as you can see [here in ESP32-audioI2S](https://github.com/schreibfaul1/ESP32-audioI2S/blob/master/src/Audio.cpp#L3068) , he makes a special exception for TTS : "tts has one chunk...

Take a look to my issue, it could help for pinout : https://github.com/earlephilhower/ESP8266Audio/issues/469 Start with the simplest example. You could also make a quick test with internal dac. And take...

> What do I do with sck contact? You should probably put it to GND.

Thank you for all these information. I hope they will repair internal dac quickly for ESP32 ! @softhack007 you're right : I have to use pin 22 for internal DAC,...

> @ensingerphilipp Hi, I've synthetised what I learned in this example : https://github.com/earlephilhower/ESP8266Audio/issues/469 I also have converted a project to platformio (it's an audio player controlled by MQTT which is...

Hi, To use internal DAC of the ESP32 you should use "out = new AudioOutputI2S(0, 1);" as recommended in readme. What kind of ESP32 board do you use ? I...

Same problem here : I play one google tts mp3 then it hang immediately at the end of the sound. I tried : - with esp8266 (wemos D1, no dac)...

Edit : some additional test & information : - if you stop during the playing of the streamed file there is no hang of the ESP. - The ESP doesn't...

Hi, easy way to reproduce the bug : Take "StreamMP3FromHTTP" example, and replace : `const char *URL="http://kvbstreams.dyndns.org:8000/wkvi-am";` with `const char *URL="http://translate.google.com/translate_tts?ie=UTF-8&q=bonjour&tl=fr&client=tw-ob&ttsspeed=1";` [This is a record ](https://dl.dropbox.com/s/obdzuxx1jza8tdc/GoogleTTS_neverEding.mp3)of the sound that I...