返回介绍

AudioClip.GetData 获取数据

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

JavaScript => public function GetData(data: float[], offsetSamples: int): bool;
C# => public bool GetData(float[] data, int offsetSamples);

Description 描述

Fills an array with sample data from the clip.

该剪辑的采样数据数据。

The samples are floats ranging from -1.0f to 1.0f. The sample count is determined by the length of the float array. Use offsetSamples to start the read from a random position in the clip. If the read length from the offset is longer than the clip length, the read will wrap around and read the remaining samples from the start of the clip.

采样的浮点数范围是-1.0 ~ 1.0,采样数由浮点数数组的长度确定。使用offsetSamples从剪辑的随机位置开始读。如果从偏移值读取的长度比剪辑长,读取将环绕从剪辑开始读取剩余采样。

Note that with compressed audio files, the sample data can only be retrieved when the Load Type is set to Decompress on Load in the audio importer. If this is not the case then the array will be returned with zeroes for all the sample values.

注意,压缩的音频文件,当加载类型在音频导入器设置为加载时解压缩时,采样数据只能被读取。如果这不是这种情况,那么数组将返回所有采样值为零。

JavaScript:

// Read all the samples from the clip, reducing their gain by half
// as we go along.
function Start () {
	var aud = GetComponent.<AudioSource>();
	var samples = new float[aud.clip.samples * aud.clip.channels];
	aud.clip.GetData(samples, 0);
 
	for (var i = 0; i < samples.Length; ++i)
		samples[i] = samples[i] * 0.5f;
 
	aud.clip.SetData(samples, 0);
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Start() {
        AudioSource aud = GetComponent<AudioSource>();
        float[] samples = new float[aud.clip.samples * aud.clip.channels];
        aud.clip.GetData(samples, 0);
        int i = 0;
        while (i < samples.Length) {
            samples[i] = samples[i] * 0.5F;
            ++i;
        }
        aud.clip.SetData(samples, 0);
    }
}

AudioClip

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

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

发布评论

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