AudioInput QML Type▲
-
Import Statement: import QtMultimedia
-
Instantiates:: QAudioInput
-
Group: AudioInput is part of multimedia_qml, multimedia_audio_qml
Detailed Description▲
CaptureSession {
id
:
playMusic
audioInput
:
AudioInput {
volume
:
slider.value
}
recorder
:
MediaRecorder {
... }
}
Slider
{
id
:
slider
from
:
0.
to
:
1.
}
You can use AudioInput together with a QtMultiMedia::CaptureSession to capture audio from an audio input device.
See Also▲
See also Camera, AudioOutput
Property Documentation▲
device : AudioDevice▲
This property describes the audio device connected to this input.
The device property represents the audio device this input is connected to. This property can be used to select an output device from the QtMultimedia::MediaDevices::audioInputs() list.
muted : bool▲
This property holds whether the audio input is muted.
Defaults to false.
volume : real▲
The volume is scaled linearly, ranging from 0 (silence) to 1 (full volume).
values outside this range will be clamped.
By default the volume is 1.
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 Also▲
See also QAudio::convertVolume()