ESP8266Audio icon indicating copy to clipboard operation
ESP8266Audio copied to clipboard

Arduino library to play MOD, WAV, FLAC, MIDI, RTTTL, MP3, and AAC files on I2S DACs or with a software emulated delta-sigma DAC on the ESP8266 and ESP32

Results 186 ESP8266Audio issues
Sort by recently updated
recently updated
newest added

Suggestion: A 20kHz LPF filter can be made with two more capacitors and one resistor. ![image](https://user-images.githubusercontent.com/7290319/183089724-b3a3aff8-70fb-4dc2-81be-4c9d7758ee91.png)

I am using the ESP-PICO-KIT to test the repeated playback of a sound file. Code: `#include #include #include "SPIFFS.h" #include "AudioFileSourceSPIFFS.h" // #include "AudioFileSourceID3.h" // #include "AudioGeneratorWav.h" #include "AudioGeneratorMP3.h" #include...

I see a project in internet ([https://tomeko.net/projects/rtp_pager/index.php?lang=en](https://tomeko.net/projects/rtp_pager/index.php?lang=en)) and want to run it by your library my code is : `include #include #include #include #include #include "config.h" // buffers for receiving...

Hi, Thank you for writing ESP8266Audio and ESP8266SAM, I was hoping to get these libraries working with ESPHome this weekend but it's a bit beyond me. It seems like the...

Hello, Thanks for this great library and your work ! I have noticed that when I play a mono MP3, the right channel contains a buzzing sound. https://user-images.githubusercontent.com/42724151/181280976-96016bac-9fe4-4213-b666-2deb13ee0616.MOV On the...

Hello, Thanks for the work on the library, it works pretty well except that I have an issue on the output audio on a RP2040 based-board, whatever audio file I...

I use AudioFileSourceICYStream to play web radio stations with success, but I dont get any Metadata events.

Hey, I try to play a .wav file from SPIFFS on internal DAC on ESP32-S2. #include "AudioGeneratorWAV.h" #include "AudioOutputI2SNoDAC.h" #include #include #include AudioGeneratorWAV *wav; AudioFileSourceSPIFFS *file; AudioOutputI2S *out; void setup()...

I didnt see this mentioned on the documentation so i decided to ask here, Im having a problem with the wiring diagram on the documentation, when the ESP8266 goes into...

Please consider this PR trying to improve performance with these changes: - new tsf_note_on_fast returning playIndex and removing lowpass filter setup since it is not being processed in tsf_voice_render_fast anyway...