ESP32-WROOM Bluetooth transmitter audio issues #753
-
|
Hi all, I have an ESP32_WROOM connected to an SD Card module. The ESP is then connecting to my Bluetooth speaker to transmit the audio. Everything is working, but I get a small static pop at the end of each sound played. Any ideas what can be causing that pop and how I get rid of it...? Thankyou! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
|
In theory if the audio is phased out at the end, there should be no pop: double check your recording. If this does not help you can replace your logic which stops at the end if the file to just continue to write silence by calling writeSilence() on the i2s object. |
Beta Was this translation helpful? Give feedback.
-
|
So I tweaked the audio file and added a small fade in. That resolved the issues. |
Beta Was this translation helpful? Give feedback.
In theory if the audio is phased out at the end, there should be no pop: double check your recording.
If this does not help you can replace your logic which stops at the end if the file to just continue to write silence by calling writeSilence() on the i2s object.