I am trying to develop a multimedia program using Qt that receives an audio input stream from a microphone (using QAudioInput ), then stores the sampled bytes in memory for 60 milliseconds, then plays them (using QAudioOutput ).
There is an example in the documentation for QAudioOuput that does most of this, but instead uses the file as a data source. How can I change this to use the input stream instead?
source share