我正在尝试弄清楚如何更改Standing Wave 3 actionscript库中声音的音调。我已在440hz(A)处导入声音,并尝试更改其音高以说出(C)音符。

任何提示,不胜感激。

最佳答案

您看过过滤器了吗?特别是ResamplingFilter。您通过创建带有2个参数的新ResamplingFilter来使用。第一个是源(IAudioSource),第二个参数是频率将被改变的因数。

看起来像这样:

var aNote:IAudioSource = new SoundSource(new ANoteSoundAsset());
var cNote:IAudioSource = new ResamplingFilter(aNote, 1.189);
player.play(cNote);

这将使音符的音调从A4增至大约C5。

有用的链接:
  • ResamplingFilter reference
  • List of note frequencies
  • Dev guide for the library
  • 10-01 17:21