Phil Schatzmann
Phil Schatzmann
Is the log level in all sketches set to Warning? Maybe you can try to decrease the sample rate...
Is this with the example with or w/o decoder ?
Streaming Audio is hard: If you use a process where you sample at the sender with constant speed, it might be that the receiver is running a bit faster than...
Check out the [class documentation](https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_s_b_c_decoder.html): you actually reduced the internal buffer from 8192 bytes to 1000. I guess you could even go further and decrease it down to the actual...
I think you can use my different libraries together with ESPHome to build some cool stuff just with a few lines of code. E.g. with my library [arduino-simple-tts](https://github.com/pschatzmann/arduino-simple-tts) you could...
Well on my side it was a conscious decision to make this library dependent on Arduino because of the Arduino Streams, so you can deal with (audio) data via Serial,...
I agree - that would be the logical choice. It's just not as easy to use ... But maybe another architecture would make more sense: Like ESPHome communicates via some...
Moved to discussion - ideas
No I don't by I would expect that you can just copy from a URLStream to a File and don't forget to close the file at the end....
There is no example: I suggest that you read a tutorial about Arduino and Files first. You can try to copy using the StreamCopy class with copy() or copyAll() or...