2019-04-15 14:49:41 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-03-16 23:01:02 +01:00
<class name= "AudioEffectSpectrumAnalyzer" inherits= "AudioEffect" version= "3.5" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2019-04-15 14:49:41 +02:00
<brief_description >
2021-05-13 02:30:34 +02:00
Audio effect that can be used for real-time audio visualizations.
2019-04-15 14:49:41 +02:00
</brief_description>
<description >
2021-05-13 02:30:34 +02:00
This audio effect does not affect sound output, but can be used for real-time audio visualizations.
See also [AudioStreamGenerator] for procedurally generating sounds.
2019-04-15 14:49:41 +02:00
</description>
<tutorials >
2022-01-30 02:33:16 +01:00
<link title= "Audio Spectrum Demo" > https://godotengine.org/asset-library/asset/528</link>
<link title= "Godot 3.2 will get new audio features" > https://godotengine.org/article/godot-32-will-get-new-audio-features</link>
2019-04-15 14:49:41 +02:00
</tutorials>
<methods >
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "buffer_length" type= "float" setter= "set_buffer_length" getter= "get_buffer_length" default= "2.0" >
2021-05-13 02:30:34 +02:00
The length of the buffer to keep (in seconds). Higher values keep data around for longer, but require more memory.
2019-04-15 14:49:41 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "fft_size" type= "int" setter= "set_fft_size" getter= "get_fft_size" enum= "AudioEffectSpectrumAnalyzer.FFT_Size" default= "2" >
2021-05-13 02:30:34 +02:00
The size of the [url=https://en.wikipedia.org/wiki/Fast_Fourier_transform]Fast Fourier transform[/url] buffer. Higher values smooth out the spectrum analysis over time, but have greater latency. The effects of this higher latency are especially noticeable with sudden amplitude changes.
2019-04-15 14:49:41 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "tap_back_pos" type= "float" setter= "set_tap_back_pos" getter= "get_tap_back_pos" default= "0.01" >
2019-04-15 14:49:41 +02:00
</member>
</members>
<constants >
2019-04-19 11:21:09 +02:00
<constant name= "FFT_SIZE_256" value= "0" enum= "FFT_Size" >
2021-05-13 02:30:34 +02:00
Use a buffer of 256 samples for the Fast Fourier transform. Lowest latency, but least stable over time.
2019-04-19 11:21:09 +02:00
</constant>
<constant name= "FFT_SIZE_512" value= "1" enum= "FFT_Size" >
2021-05-13 02:30:34 +02:00
Use a buffer of 512 samples for the Fast Fourier transform. Low latency, but less stable over time.
2019-04-19 11:21:09 +02:00
</constant>
<constant name= "FFT_SIZE_1024" value= "2" enum= "FFT_Size" >
2021-05-13 02:30:34 +02:00
Use a buffer of 1024 samples for the Fast Fourier transform. This is a compromise between latency and stability over time.
2019-04-19 11:21:09 +02:00
</constant>
<constant name= "FFT_SIZE_2048" value= "3" enum= "FFT_Size" >
2021-05-13 02:30:34 +02:00
Use a buffer of 2048 samples for the Fast Fourier transform. High latency, but stable over time.
2019-04-19 11:21:09 +02:00
</constant>
<constant name= "FFT_SIZE_4096" value= "4" enum= "FFT_Size" >
2021-05-13 02:30:34 +02:00
Use a buffer of 4096 samples for the Fast Fourier transform. Highest latency, but most stable over time.
2019-04-19 11:21:09 +02:00
</constant>
<constant name= "FFT_SIZE_MAX" value= "5" enum= "FFT_Size" >
2019-06-27 11:10:53 +02:00
Represents the size of the [enum FFT_Size] enum.
2019-04-19 11:21:09 +02:00
</constant>
2019-04-15 14:49:41 +02:00
</constants>
</class>