我可以使用 Audio Toolbox 播放循环吗?

发布于 2024-09-28 00:40:57 字数 850 浏览 1 评论 0原文

在我的应用程序中,我使用 AudioToolbox 框架,我需要播放一个循环,可以吗?

同时缓慢进行 2 次触摸,

- (AVAudioPlayer *)getNoteFromFilename:(NSString *)name andoftype:(NSString *)type{
    NSString *soundPath = [[NSBundle mainBundle] pathForResource:name
                                                          ofType:type];
    NSURL *fileURL = [NSURL fileURLWithPath:soundPath];
    AVAudioPlayer *note = [[[AVAudioPlayer alloc] initWithContentsOfURL:fileURL
                                                                  error:nil] autorelease];
    return note;

}

这是 AVAudioplayer 代码,在 viewdidload 中

ViewDidLoad {

    self.Note = [self getNoteFromFilename:@"Note" andoftype:@"wav"];


}

在 IBAction 中调用它:

[Note prepareToPlay];
[Note play];

注意:我保留了所有按钮和 AVAudioPlayer

in my app i use AudioToolbox framework and i need to play a loop can i ?

this is the AVAudioplayer code that goes slowly with 2 touches simultaneously

- (AVAudioPlayer *)getNoteFromFilename:(NSString *)name andoftype:(NSString *)type{
    NSString *soundPath = [[NSBundle mainBundle] pathForResource:name
                                                          ofType:type];
    NSURL *fileURL = [NSURL fileURLWithPath:soundPath];
    AVAudioPlayer *note = [[[AVAudioPlayer alloc] initWithContentsOfURL:fileURL
                                                                  error:nil] autorelease];
    return note;

}

in the viewdidload

ViewDidLoad {

    self.Note = [self getNoteFromFilename:@"Note" andoftype:@"wav"];


}

calling it by this in IBAction :

[Note prepareToPlay];
[Note play];

NB: i have retaind all the button and the AVAudioPlayer

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悸初 2024-10-05 00:40:57

请改用 AVAudioPlayer。在那里,您可以使用 numberOfLoops 属性轻松循环。

Use AVAudioPlayer instead. There you can easily loop using the numberOfLoops property.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文