AudioOutput QML Type

An audio output to be used for playback or monitoring of a capture session. More...

Import Statement: import QtMultimedia
Instantiates: QAudioOutput

Properties

Detailed Description

MediaPlayer {
    id: playMusic
    source: "music.wav"
    audioOutput: AudioOutput {
        volume: slider.value
    }
}
Slider {
    id: slider
    from: 0.
    to: 1.
}

You can use AudioOutput together with a QtMultiMedia::MediaPlayer to play audio content, or you can use it in conjunction with a MultiMedia::CaptureSession to monitor the audio processed by the capture session.

See also VideoOutput and AudioInput.

Property Documentation

device : AudioDevice

This property describes the audio device connected to this output.

The device property represents the audio device this output is connected to. This property can be used to select an output device from the QtMultimedia::MediaDevices::audioOutputs() list.


muted : bool

This property holds whether the audio output is muted.

Defaults to false.


volume : real

This property holds the volume of the audio output.

The volume is scaled linearly from 0.0 (silence) to 1.0 (full volume). Values outside this range will be clamped: a value lower than 0.0 is set to 0.0, a value higher than 1.0 will set to 1.0.

The default volume is 1.0.

UI volume controls should usually be scaled non-linearly. For example, using a logarithmic scale will produce linear changes in perceived loudness, which is what a user would normally expect from a volume control.

See QtMultimedia.convertVolume() for more details.


© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.