GetSoundBPM
Jump to navigation
Jump to search
This function gets the beats per minute of a specific sound element.
Syntax
int getSoundBPM ( element sound )
OOP Syntax Help! I don't understand this!
- Method: sound:getBPM(...)
Required Arguments
- sound: a sound element that is created using playSound or playSound3D
Returns
Returns the beats per minute of the given sound.
Example
Click to collapse [-]
Clientfunction getBPM() local soundElement = playSound("song.mp3") -- Play the song local beatsValue = getSoundBPM(soundElement) -- Get the beats per minute of the song outputChatBox("BPM: "..beatsValue) -- Output the beats to the chat box end addCommandHandler("bpm", getBPM)
Requirements
This template will be deleted.
See Also
- getRadioChannel
- getRadioChannelName
- getSFXStatus
- getSoundBPM
- getSoundBufferLength
- getSoundEffectParameters
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance
- getSoundMetaTags
- getSoundMinDistance
- getSoundPan
- getSoundPosition
- getSoundProperties
- getSoundSpeed
- getSoundVolume
- getSoundWaveData
- isSoundLooped
- isSoundPanningEnabled
- isSoundPaused
- playSFX3D
- playSFX
- playSound3D
- playSound
- setRadioChannel
- setSoundEffectEnabled
- setSoundEffectParameter
- setSoundLooped
- setSoundMaxDistance
- setSoundMinDistance
- setSoundPan
- setSoundPanningEnabled
- setSoundPaused
- setSoundPosition
- setSoundProperties
- setSoundSpeed
- setSoundVolume
- stopSound
- Shared
- playSoundFrontEnd