GetSoundFFTData

From Multi Theft Auto: Wiki
Revision as of 13:40, 22 August 2012 by MuLTi (talk | contribs) (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4.0140|1.3.0|4125| This function gets the FFT data for an audio stream which is a table of floats representing the current audio...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ADDED/UPDATED IN VERSION 1.3.0 r4125:

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

Syntax

table getSoundFFTData( element sound, int iSamples, [[int iBands = 0]] )

Required Arguments

  • iSamples Allowed samples are 128, 256, 512, 1024, 2048, 4096, 8092 and 16184

Optional Arguments

  • iBands Post processing option

Returns

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

Example

Click to collapse [-]
Client
-- not done yet

See Also