GetSoundBPM: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 17: | Line 17: | ||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- | function bpm () | ||
-- Long version (might be more understandable as example) | |||
sound = playSound ( "song.mp3" ) -- Play the song | |||
beats = getSoundBPM ( sound ) -- Get the beats per minute of the song | |||
outputChatBox ( "Long code version: " .. beats ) -- Output the beats to the chat box | |||
-- Short version + Would save some memory | |||
outputChatBox ( "Short code version: " .. getSoundBPM ( playSound ( "song.mp3" ) ) ) | |||
end | |||
addCommandHandler ( "bpm", bpm ) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> |
Revision as of 12:43, 6 December 2012
Syntax
int getSoundBPM( element sound )
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 bpm () -- Long version (might be more understandable as example) sound = playSound ( "song.mp3" ) -- Play the song beats = getSoundBPM ( sound ) -- Get the beats per minute of the song outputChatBox ( "Long code version: " .. beats ) -- Output the beats to the chat box -- Short version + Would save some memory outputChatBox ( "Short code version: " .. getSoundBPM ( playSound ( "song.mp3" ) ) ) end addCommandHandler ( "bpm", bpm )
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