GetSoundWaveData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(OOP)
(5 intermediate revisions by 3 users not shown)
Line 15: Line 15:


===Returns===
===Returns===
Returns a [[table]] of '''iSamples'''/2 floats representing the current audio frame waveform.
Returns a [[table]] of '''iSamples''' ''floats'' representing the current audio frame waveform.
Returns ''false'' if the sound is not playing yet or hasn't buffered in the
Returns ''false'' if the sound is not playing yet or hasn't buffered in the
case of streams.
case of streams.


==Example==
==Example==
This code creates vertical waveform of sound in center of screen from top to bottom. [http://imageshack.com/a/img547/9052/xbrp.png] Key '''9''' - start, key '''0''' - stop.
This example creates a sound visualizer on the top left corner of the screen.
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local handl = nil
soundHandler = playSound ( "sound.wav" )
local sx,_ = guiGetScreenSize()
 
local colors = { tocolor(255,0,0),tocolor(0,255,0) }
function onSoundPlayRender ( )
     if ( soundHandler ) then
function clientRenderFunc()
         local waveData = getSoundWaveData ( soundHandler, 256 )
     if(handl) then
if ( waveData ) then
dxDrawRectangle(sx/2,0,1,256,tocolor(255,255,255,127))
            for i=0,255 do
         local bt = getSoundWaveData(handl,512)
                dxDrawRectangle ( i, 128, 1, waveData[i] * 128)
if(not bt) then return end
            end
for i=1,127 do
        end
    dxDrawLine(sx/2+64*bt[2*i-1],i*2-2,sx/2+64*bt[2*(i+1)-1],(i+1)*2-2,colors[2])
    dxDrawLine(sx/2+64*bt[2*i],i*2-1,sx/2+64*bt[2*(i+1)],(i+1)*2-1,colors[1])
end
     end
     end
end
end
addEventHandler ( "onClientRender", getRootElement(), onSoundPlayRender )
</syntaxhighlight>
</section>
This example creates a sound viewer, but only with bars down.
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
soundHandler = playSound ("audio.mp3")
local samples = 256


function clientSoundStopFunc(_)
function renderWave ()
     if(source == handl) then
     if (isElement (soundHandler)) then
removeEventHandler("onClientRender",root,clientRenderFunc)
        local waveData = getSoundWaveData (soundHandler, samples)
removeEventHandler("onClientSoundStopped",root,clientSoundStopFunc)
        for i=0, samples-1 do
handl = nil
            if (waveData[i] == waveData[i]) then -- Avoid NaN values.
                dxDrawRectangle (i, 128, 1, math.abs (waveData[i]) * 128)
            end
        end
     end
     end
end
end
addEventHandler ("onClientRender", root, renderWave)
function musicStartFunc()
</syntaxhighlight>
     if(not handl) then
</section>
         handl = playSound('btr.mp3')
This example creates a sound viewer, but only with bars up.
         addEventHandler("onClientRender",root,clientRenderFunc)
<section name="Client" class="client" show="true">
addEventHandler("onClientSoundStopped",root,clientSoundStopFunc)
<syntaxhighlight lang="lua">
soundHandler = playSound ("audio.mp3")
local samples = 256
 
function renderWave ()
     if (isElement (soundHandler)) then
         local waveData = getSoundWaveData (soundHandler, samples)
         for i=0, samples-1 do
            if (waveData[i] == waveData[i]) then -- Avoid NaN values.
                dxDrawRectangle (i, 128, 1, math.abs (waveData[i]) * -128)
            end
        end
     end
     end
end
end
addEventHandler ("onClientRender", root, renderWave)
function musicStopFunc()
</syntaxhighlight>
     if(handl) then
</section>
         removeEventHandler("onClientRender",root,clientRenderFunc)
This example creates a sound viewer on the bottom right corner of the screen.
removeEventHandler("onClientSoundStopped",root,clientSoundStopFunc)
<section name="Client" class="client" show="true">
        stopSound(handl)
<syntaxhighlight lang="lua">
         handl = nil
soundHandler = playSound ("audio.mp3")
local x, y = guiGetScreenSize ()
local samples = 256
 
function renderWave ()
     if (isElement (soundHandler)) then
         local waveData = getSoundWaveData (soundHandler, samples)
        for i=0, samples-1 do
            if (waveData[i] == waveData[i]) then -- Avoid NaN values.
                dxDrawRectangle ((x-samples)+i, y-128, 1, waveData[i] * 128)
            end
         end
     end
     end
end
end
addEventHandler ("onClientRender", root, renderWave)
bindKey("9","down",musicStartFunc)
bindKey("0","down",musicStopFunc)
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
Line 76: Line 104:
{{Client_audio_functions}}
{{Client_audio_functions}}


[[hu:getSoundWaveData]]
[[ar:getSoundWaveData]]
[[ar:getSoundWaveData]]

Revision as of 20:00, 22 January 2020

This function gets the wave form data for an audio stream which is a table of floats representing the current audio frame as a wave. This allows things like visualisations.

If the element is a player, this function will use the players voice.

Syntax

table getSoundWaveData ( element sound, int iSamples )

OOP Syntax Help! I don't understand this!

Method: sound:getWaveData(...)


Required Arguments

  • sound: a sound element that is created using playSound or playSound3D. Streams are also supported
  • iSamples: allowed samples are 256, 512, 1024, 2048, 4096, 8192 and 16384.

Returns

Returns a table of iSamples floats representing the current audio frame waveform. Returns false if the sound is not playing yet or hasn't buffered in the case of streams.

Example

This example creates a sound visualizer on the top left corner of the screen.

Click to collapse [-]
Client
soundHandler = playSound ( "sound.wav" )

function onSoundPlayRender ( )
    if ( soundHandler ) then
        local waveData = getSoundWaveData ( soundHandler, 256 )
	if ( waveData ) then
            for i=0,255 do
                dxDrawRectangle ( i, 128, 1, waveData[i] * 128)
            end
        end
    end
end
addEventHandler ( "onClientRender", getRootElement(), onSoundPlayRender )

This example creates a sound viewer, but only with bars down.

Click to collapse [-]
Client
soundHandler = playSound ("audio.mp3")
local samples = 256

function renderWave ()
    if (isElement (soundHandler)) then
        local waveData = getSoundWaveData (soundHandler, samples)
        for i=0, samples-1 do
            if (waveData[i] == waveData[i]) then -- Avoid NaN values.
                dxDrawRectangle (i, 128, 1, math.abs (waveData[i]) * 128)
            end
        end
    end
end
addEventHandler ("onClientRender", root, renderWave)

This example creates a sound viewer, but only with bars up.

Click to collapse [-]
Client
soundHandler = playSound ("audio.mp3")
local samples = 256

function renderWave ()
    if (isElement (soundHandler)) then
        local waveData = getSoundWaveData (soundHandler, samples)
        for i=0, samples-1 do
            if (waveData[i] == waveData[i]) then -- Avoid NaN values.
                dxDrawRectangle (i, 128, 1, math.abs (waveData[i]) * -128)
            end
        end
    end
end
addEventHandler ("onClientRender", root, renderWave)

This example creates a sound viewer on the bottom right corner of the screen.

Click to collapse [-]
Client
soundHandler = playSound ("audio.mp3")
local x, y = guiGetScreenSize ()
local samples = 256

function renderWave ()
    if (isElement (soundHandler)) then
        local waveData = getSoundWaveData (soundHandler, samples)
        for i=0, samples-1 do
            if (waveData[i] == waveData[i]) then -- Avoid NaN values.
                dxDrawRectangle ((x-samples)+i, y-128, 1, waveData[i] * 128)
            end
        end
    end
end
addEventHandler ("onClientRender", root, renderWave)

Changelog

Version Description
1.3.2 Added player element to use a players voice

See Also