Serial Stream from ESP32 >> ESP32 #2011
-
@pschatzmann is there a way to pipe a URLStream or an ICYStream's data as received, over to another microcontroller (this one with wifi off) over a suitably sized Serial data, for eventual consumption and I2S output in the second microcontroller , without having to resort to ADPCM comp/decompression like in the send-adpcm_framed-receive example ? What do you suggest as a pipeline? ThankYou. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 20 replies
-
I don't quite understand your question: The audio data transmitted via URLStream or ICYStream is usually mp3 or aac, so it is already complressed with a codec that is much better then ADPCM! Just make sure that the baud rate is high enough if you want to live play... |
Beta Was this translation helpful? Give feedback.
-
@pschatzmann , if I use a circular buffer for the serial data instead of extra cables for CTS and RTX, perhaps it may work ? |
Beta Was this translation helpful? Give feedback.
I don't quite understand your question: The audio data transmitted via URLStream or ICYStream is usually mp3 or aac, so it is already complressed with a codec that is much better then ADPCM!
Just make sure that the baud rate is high enough if you want to live play...