Arduino
Arduino AudioTools: Streaming audio via http post
In my Arduino AudioTools project I am providing many examples that show how to distribute audio over the network. One scenario that is easy to implement, is to write the data via http post. On the server side usually one of the following options is expected: the content length and we can just write the audio data to the stream after the http header no content length, adding transfer-encoding: chunked to the post header and Read more…