gpt4 book ai didi

ios - 在 iOS 中使用 finch 时淡出声音

转载 作者:行者123 更新时间:2023-11-28 22:47:27 25 4
gpt4 key购买 nike

我在 iOS 中使用 Finch openAL 包装器,我想淡出我的 FISound

假设我有一个 30 秒的声音,例如,我希望能够在 15 秒后将声音淡出超过 5 秒。

如果可能的话,我想避免使用 openAL。

最佳答案

设置一个 NSTimer 反复降低声音增益直到为零。或者你可以这样做:

static const float FadeStep = 0.1;
static const NSTimeInterval FadeDelay = 0.1;

@implementation FISound

- (void) fadeOut
{
self.gain = MAX(0, self.gain - FadeStep);
if (self.gain > 0) {
[self performSelector:_cmd afterDelay:FadeDelay withObject:nil];
}
}

@end

这是一个快速而肮脏的解决方案,但它应该适用于很多情况。

关于ios - 在 iOS 中使用 finch 时淡出声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12834048/

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