ESP32 audio kit support #824
-
Hi everyone! I bought an ESP32 audio kit module and I saw the Arduino-audio-tools Library. I would like to know if any of the Arduino examples are useful for my project. I need to record some audio and save it in the SD card in mp3 format without any need for additional components, just the ESP32 audio kit using the microphone and the SD card incorporated on it. Someone can help me, please? I will be waiting for your reply. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 5 replies
-
Here is an example how you can record audio from the built in microphones to an encoded file. I would not recommend to use any mp3 or aac encoder because of the limited memory and processing power, but you can try the related encoders. Just read the Wiki. ps. don't forget to install the AudioKit project! when you want to use the AudioKit together with the AudioTools... |
Beta Was this translation helpful? Give feedback.
-
Hi Phil, I installed both libraries but I have 2 questions:
Thank you. |
Beta Was this translation helpful? Give feedback.
-
There is a Readme and a Wiki that should answer all questions! |
Beta Was this translation helpful? Give feedback.
-
Hi Phil, I noticed that you set the Sample Frequency in 16000 Hz and I have another question, is it possible to change the Sample Frequency to record audio? For example change it to 3000 Hz or 10000 Hz. I saw the Sample Frequency on the line "AudioInfo info(16000, 1, 16);" |
Beta Was this translation helpful? Give feedback.
-
The wiki of the audiokit project contains the list of supported frequencies! |
Beta Was this translation helpful? Give feedback.
-
Hello, everyone! I'm working on a VoIP/intercom project using the ESP32 Audio Kit V2.2 (with ES8388 codec), and I'm facing a very specific issue. ✅ What works: cpp Any help, hints or working examples would be greatly appreciated 🙏 Thank you in advance! [HTML] |
Beta Was this translation helpful? Give feedback.
-
Please follow the advice given in the Wiki |
Beta Was this translation helpful? Give feedback.
Here is an example how you can record audio from the built in microphones to an encoded file.
I would not recommend to use any mp3 or aac encoder because of the limited memory and processing power, but you can try the related encoders. Just read the Wiki.
ps. don't forget to install the AudioKit project! when you want to use the AudioKit together with the AudioTools...