-->
Page 1 of 2

Is this possible ?

PostPosted: Mon Mar 16, 2020 10:23 am
by kenyaa
Can i send voice notes in realtime through a mic to a php using esp8266 where audio will get processed.
I don't know it's possible or not so i'm asking you any suggestion or reply will be appreciated.

Thanks & regards
Kenya Sharma
hindiyaar

Re: Is this possible ?

PostPosted: Mon Mar 16, 2020 7:08 pm
by davydnorris
Yes that's possible. Voice can be quite low fidelity recording and still be more than OK.

I would start looking at the ESP Baby monitor project for ideas:
https://hackaday.com/2016/07/15/baby-monitor-rebuild-is-also-esp8266-audio-streaming-how-to/

Re: Is this possible ?

PostPosted: Tue Mar 31, 2020 6:26 am
by Ape21
thank you for the article link

Re: Is this possible ?

PostPosted: Sun Apr 12, 2020 6:00 am
by eriksl
The ESP8266 does have a (single) I2S interface, so you can connect an ADC. It may even be fast enough to capture at 44.1 or 48 kHz. I am not sure if the processor itself (at 80 or 160 MHz) is quick enough to do any processing or packaging to WLAN at that speed.

Only drawback is that the I2S interface is really poorly documented.

You might consider using an ADC with a SPI interface instead or even I2C (lower sample frequency due to lower bus speed, though).