返回介绍

AudioListener.GetSpectrumData 获取声谱数据

发布于 2019-12-18 15:37:21 字数 2633 浏览 1158 评论 0 收藏 0

JavaScript => public static function GetSpectrumData(samples: float[], channel: int, window: FFTWindow): void;
C# => public static void GetSpectrumData(float[] samples, int channel, FFTWindow window);

Parameters 参数

samplesThe array to populate with audio samples. Its length must be a power of 2.
音频采样数据填充数组,该长度必须是2次幂。
channelThe channel to sample from.
采样的声道。
windowThe FFTWindow type to use when sampling.
当采样时使用的FFTWindow类型。

Description 描述

Provides a block of the listener (master)'s spectrum data.

提供一个侦听器(主)的频谱数据块。

The array given in the samples parameter will be filled with the requested data.

给定的采样参数数组将被请求的数据填充。

Number of values (the length of the samples array) must be a power of 2. (ie 128/256/512 etc). Min = 64. Max = 8192. Use window to reduce leakage between frequency bins/bands. Note, the more complex window type, the better the quality, but reduced speed.

采样数组的长度必须是2次幂。(例如128/256/512)最小64,最大8192。使用FFTWindow以减少bins/bands之间频率泄漏。注意,越复杂的窗口类型,质量越好,但减小速度。

This function will use the sampling rate specified in AudioSettings.outputSampleRate, and NOT the sampling rate specified for the audio clip.

这个函数将使用AudioSettings.outputSampleRate指定的采样率,而不是音频剪辑指定的采样率。

See Also: AudioListener.GetOutputData, AudioSource.GetSpectrumData, AudioSource.GetOutputData.


JavaScript => public static function GetSpectrumData(numSamples: int, channel: int, window: FFTWindow): float[];
C# => public static float[] GetSpectrumData(int numSamples, int channel, FFTWindow window);

废弃注意,GetSpectrumData的返回float[]方法被弃用。

Description 描述

Deprecated Version. Returns a block of the listener (master)'s spectrum data.

This variation of the function allocates a new array each time it is called. Use the Non-alloc version instead for better performance.

AudioListener

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文