diff --git a/src/autoapp/Projection/AudioOutput.cpp b/src/autoapp/Projection/AudioOutput.cpp index 924953c..812df7f 100644 --- a/src/autoapp/Projection/AudioOutput.cpp +++ b/src/autoapp/Projection/AudioOutput.cpp @@ -49,6 +49,9 @@ void AudioOutput::createAudioOutput() { OPENAUTO_LOG(debug) << "[AudioOutput] create."; audioOutput_ = std::make_unique(QAudioDeviceInfo::defaultOutputDevice(), audioFormat_); + + // Default volume level (max) produces crackles + audioOutput_->setVolume(static_cast(0.90)); } bool AudioOutput::open()