SoundEffect QML Type
The SoundEffect type provides a way to play sound effects in QML. More...
Import Statement: | import QtMultimedia |
Instantiates: | QSoundEffect |
Properties
- loops : int
- loopsRemaining : int
- muted : bool
- playing : bool
- source : url
- status : enumeration
- volume : qreal
Signals
- loadedChanged()
- loopCountChanged()
- loopsRemainingChanged()
- mutedChanged()
- playingChanged()
- sourceChanged()
- statusChanged()
- volumeChanged()
Methods
Detailed Description
This type allows you to play uncompressed audio files (typically WAV files) in a generally lower latency way, and is suitable for "feedback" type sounds in response to user actions (e.g. virtual keyboard sounds, positive or negative feedback for popup dialogs, or game sounds). If low latency is not important, consider using the MediaPlayer type instead, since it support a wider variety of media formats and is less resource intensive.
Typically the sound effect should be reused, which allows all the parsing and preparation to be done ahead of time, and only triggered when necessary. This is easy to achieve with QML, since you can declare your SoundEffect instance and refer to it elsewhere.
The following example plays a WAV file on mouse click.
Text { text: "Click Me!"; font.pointSize: 24; width: 150; height: 50; SoundEffect { id: playSound source: "soundeffect.wav" } MouseArea { id: playArea anchors.fill: parent onPressed: { playSound.play() } } }
Since SoundEffect requires slightly more resources to achieve lower latency playback, the platform may limit the number of simultaneously playing sound effects.
Property Documentation
loops : int |
This property holds the number of times the sound is played. A value of 0 or 1 means the sound will be played only once; set to SoundEffect.Infinite to enable infinite looping.
The value can be changed while the sound effect is playing, in which case it will update the remaining loops to the new value.
loopsRemaining : int |
This property contains the number of loops remaining before the sound effect stops by itself, or SoundEffect.Infinite if that's what has been set in loops.
muted : bool |
This property provides a way to control muting. A value of true
will mute this effect. Otherwise, playback will occur with the currently specified volume.
playing : bool |
This property indicates whether the sound effect is playing or not.
source : url |
This property holds the url for the sound to play. For the SoundEffect to attempt to load the source, the URL must exist and the application must have read permission in the specified directory. If the desired source is a local file the URL may be specified using either absolute or relative (to the file that declared the SoundEffect) pathing.
status : enumeration |
This property indicates the current status of the SoundEffect as enumerated within SoundEffect. Possible statuses are listed below.
Value | Description |
---|---|
SoundEffect.Null | No source has been set or the source is null. |
SoundEffect.Loading | The SoundEffect is trying to load the source. |
SoundEffect.Ready | The source is loaded and ready for play. |
SoundEffect.Error | An error occurred during operation, such as failure of loading the source. |
volume : qreal |
This property holds the volume of the sound effect playback.
The volume is scaled linearly from 0.0
(silence) to 1.0
(full volume). Values outside this range will be clamped.
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 convertVolume() for more details.
Signal Documentation
loadedChanged() |
The loadedChanged
signal is emitted when the loading state has changed.
Note: The corresponding handler is onLoadedChanged
.
loopCountChanged() |
The loopCountChanged
signal is emitted when the initial number of loops has changed.
Note: The corresponding handler is onLoopCountChanged
.
loopsRemainingChanged() |
The loopsRemainingChanged
signal is emitted when the remaining number of loops has changed.
Note: The corresponding handler is onLoopsRemainingChanged
.
mutedChanged() |
The mutedChanged
signal is emitted when the mute state has changed.
Note: The corresponding handler is onMutedChanged
.
playingChanged() |
The playingChanged
signal is emitted when the playing property has changed.
Note: The corresponding handler is onPlayingChanged
.
sourceChanged() |
The sourceChanged
signal is emitted when the source has been changed.
Note: The corresponding handler is onSourceChanged
.
statusChanged() |
The statusChanged
signal is emitted when the status property has changed.
Note: The corresponding handler is onStatusChanged
.
volumeChanged() |
The volumeChanged
signal is emitted when the volume has changed.
Note: The corresponding handler is onVolumeChanged
.
Method Documentation
play() |
Start playback of the sound effect, looping the effect for the number of times as specified in the loops property.
This is the default method for SoundEffect.
SoundEffect { id: playSound source: "soundeffect.wav" } MouseArea { id: playArea anchors.fill: parent onPressed: { playSound.play() } }
stop() |
Stop current playback.
© 2024 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.