Replies: 3 comments 6 replies
-
I don't know the ESPAsyncWebServer: you are at the wrong place here! |
Beta Was this translation helpful? Give feedback.
-
I also use ESPAsyncWebServer (for commands) in combination with the AudioWAVServer. I use port 80 for ESPAsyncWebServer and port 81 for AudioWAVServer. Why would seperate ports not work for your project? |
Beta Was this translation helpful? Give feedback.
-
the idea is to "secure" it behind the login/password authentication, I do not have any specific webserver preference (ESPAsyncWebServer was just a wild guess what can be used), so in general, I would use anything, what will allow me implement at least very basic security (SSL is already too complex for ESP 32) and also add "listener" for POST or GET (data in URL) requests submitting values necessary for the audio processing (currently only for volume: VolumeStream volumeStream(i2sStream); volumeStream.setVolume(volumeFromWEB);) so that I can configure the audio output remotely. |
Beta Was this translation helpful? Give feedback.
-
Hi Phil,
How can I integrate your library used in my "audio over net" (I2S mic stream accessible over browser) project with ESPAsyncWebServer instead of AudioWAVServer? I need to add to the web page a boost volume control-slider (the boost gain as you helped me solve in the other thread) and authentication, but for that I need a html code to be running and the AudioWAVServer just returns data of the format audio/wav - how can I "redirect" it into the ESPAsyncWebServer entity?
Running the webservers on different ports is not a real option.
Thank you for your ideas or even better code sample :-)
Best regards, Jan
Beta Was this translation helpful? Give feedback.
All reactions