Results 478 comments of Wolle

16KHz is just a default value, the actual sampling rate is set by the decoder.

I can't tell yet. The DLNA media protocol would be possible and I believe that is implemented in the Espressif Audio Development Framework.

DLNA is a good thing. Unfortunately, the ESP32 DLNA renderer cannot find my media server in the home network. I can see the multicast and also the replies to it,...

yes it is possible, the constructor must be called with parameters ```` Audio audio(false, 3, 1); ```` false: means external DAC, whereas the internal DAC is no longer supported with...

it works for me ````c++ #include "Arduino.h" #include "WiFiMulti.h" #include "Audio.h" //#include "SPIFFS.h" //#include "FS.h" Audio *audio; WiFiMulti wifiMulti; String ssid = "*****"; String password = "*****"; void setup() {...

The ES8388 doesn't care about the I2S port at all. https://github.com/schreibfaul1/ESP32-audioI2S/tree/master/examples/ESP32-ES8388 it does not work?

you probably have IDF version 4.4 `audio.i2s_mclk_pin_select(0);` is then without function. Please try `audio.setPinout(32, 25, 26, -1 , 0);`

Please take an ESP32, the ESP8266 has only one core and therefore, like the ESP32-S2, cannot be used for this library. The ESP32 can also be one of the first...

I've never done anything with MQTT. Have a look at the ESPUINO project, https://forum.espuino.de/t/espuino-und-mqtt/43 https://github.com/biologist79/ESPuino

On the ESP32, the PSRAM is connected via SPI, that's one reason why PSRAM is slower than SRAM. The ESP32-S3 has a quad and sometimes an octo SPI. Then the...