A2DP->I2S -> I2S->webserver_wav, plays to fast #239
-
Hi pschatzmann, Hi all, A2DP->I2S:
I2S->webserver_wav
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I never tried to connect 2 ESP32 via I2S, but others seem to have the same issues as well: I would suggest to try to set use_apll = true and play around with the buffer settings but my assumption is that the issue comes because the master clock between the 2 devices are not synchronised. Unfortunately, to my knowledge it is not possible to use the master clock as input... If you have an oscilloscope you could define pin_mck on both devices and compare the frequency. |
Beta Was this translation helpful? Give feedback.
-
Thank you, I did not recognize that the same issue is already discussed in #149. Other question: Is there a good alternative way to connect two ESP's for audio processing (e.g. I2C or others)? |
Beta Was this translation helpful? Give feedback.
-
I suggest to look into ESP-Now as a wireless transmission protocol. But any connection (even serial) should be feasable. You would just use a CODEC to reduce the amount of data which is transmitted and reduce the sampling rate and/or number of channels if necessary. |
Beta Was this translation helpful? Give feedback.
I suggest to look into ESP-Now as a wireless transmission protocol. But any connection (even serial) should be feasable.
You would just use a CODEC to reduce the amount of data which is transmitted and reduce the sampling rate and/or number of channels if necessary.