gpt4 book ai didi

actionscript-3 - AS3驻波3程式库变更音高

转载 作者:行者123 更新时间:2023-12-02 22:35:31 25 4
gpt4 key购买 nike

我正在尝试弄清楚如何更改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
  • 关于actionscript-3 - AS3驻波3程式库变更音高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6163832/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com