QSoundEffect¶
- PyQt5.QtMultimedia.QSoundEffect
Inherits from QObject.
Description¶
The QSoundEffect class provides a way to play low latency sound effects.
This class 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 QMediaPlayer class instead, since it supports a wider variety of media formats and is less resource intensive.
This example shows how a looping, somewhat quiet sound effect can be played:
# QSoundEffect effect;
# effect.setSource(QUrl::fromLocalFile("engine.wav"));
# effect.setLoopCount(QSoundEffect::Infinite);
# effect.setVolume(0.25f);
# effect.play();
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 assists with lower latency audio playback.
# MyGame()
# : m_explosion(this)
# {
# m_explosion.setSource(QUrl::fromLocalFile("explosion.wav"));
# m_explosion.setVolume(0.25f);
# // Set up click handling etc.
# connect(clickSource, &QPushButton::clicked, &m_explosion, &QSoundEffect::play);
# }
# private:
# QSoundEffect m_explosion;
Since QSoundEffect requires slightly more resources to achieve lower latency playback, the platform may limit the number of simultaneously playing sound effects.
Enums¶
- Loop
Member
Value
Description
Infinite -2
Used as a parameter to setLoopCount() for infinite looping
- Status
Member
Value
Description
Error 3
An error occurred during operation, such as failure of loading the source.
Loading 1
The SoundEffect is trying to load the source.
Null 0
No source has been set or the source is null.
Ready 2
The source is loaded and ready for play.
Methods¶
- __init__(parent: QObject = None)
Creates a QSoundEffect with the given parent.
- __init__(QAudioDeviceInfo, parent: QObject = None)
TODO
- category() → str
Returns the current category for this sound effect.
Some platforms can perform different audio routing for different categories, or may allow the user to set different volume levels for different categories.
This setting will be ignored on platforms that do not support audio categories.
See also
- isLoaded() → bool
TODO
- isMuted() → bool
Returns whether this sound effect is muted
- isPlaying() → bool
Returns true if the sound effect is currently playing, or false otherwise
- loopCount() → int
Returns the total number of times that this sound effect will be played before stopping.
See the loopsRemaining() method for the number of loops currently remaining.
See also
- loopsRemaining() → int
TODO
- play()
TODO
- setCategory(str)
Sets the category of this sound effect to category.
Some platforms can perform different audio routing for different categories, or may allow the user to set different volume levels for different categories.
This setting will be ignored on platforms that do not support audio categories.
If this setting is changed while a sound effect is playing it will only take effect when the sound effect has stopped playing.
See also
- setLoopCount(int)
Set the total number of times to play this sound effect to loopCount.
Setting the loop count to 0 or 1 means the sound effect will be played only once; pass
QSoundEffect::Infinite
to repeat indefinitely. The loop count can be changed while the sound effect is playing, in which case it will update the remaining loops to the new loopCount.See also
- setMuted(bool)
Sets whether to mute this sound effect’s playback.
If muted is true, playback will be muted (silenced), and otherwise playback will occur with the currently specified volume().
See also
- setVolume(float)
Sets the sound effect volume to volume.
The volume is scaled linearly from
0.0
(silence) to1.0
(full volume). Values outside this range will be clamped.The default volume is
1.0
.UI volume controls should usually be scaled nonlinearly. 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.
See also
- source() → QUrl
Returns the URL of the current source to play
See also
- status() → Status
Returns the current status of this sound effect.
- stop()
TODO
-
@staticmethod
supportedMimeTypes() → List[str] TODO
- volume() → float
Returns the current volume of this sound effect, from 0.0 (silent) to 1.0 (maximum volume).
See also
Signals¶
- categoryChanged()
TODO
- loadedChanged()
TODO
- loopCountChanged()
TODO
- loopsRemainingChanged()
TODO
- mutedChanged()
TODO
- playingChanged()
TODO
- sourceChanged()
TODO
- statusChanged()
TODO
- volumeChanged()
TODO