Qaudiooutput play sound

Voice QAudioOutput: : setVolume set size, there will be noise
solution is setSampleType by UnSignedInt SignedInt instead

QAudioFormat fmt;
fmt.setSampleType(QAudioFormat::SignedInt);

Reference since:
https://stackoverflow.com/questions/32821706/noise-after-changing-volume-in-qaudiooutput

Read More: