IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

AudioInput QML Type

An audio input to be used for capturing audio in a capture session.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

AudioInput QML Type

  • Import Statement: import QtMultimedia

  • Instantiates:: QAudioInput

  • Group: AudioInput is part of multimedia_qml, multimedia_audio_qml

Detailed Description

 
Sélectionnez
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

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+