SimpleAudioEngine中playeffect的音频文件长度

时间:2012-02-23 13:11:44

标签: iphone simpleaudioengine

使用[[SimpleAudioEngine sharedEngine] playEffect:@"sound.mp3"];

播放效果

使用过的音频文件的限制长度是多少?

1 个答案:

答案 0 :(得分:0)

我想你可以参考AVAudioFoundation这个使用AvAudioPlayer及其属性“duration”为它工作。

使用.h

    < AVAudioPlayerDelegate protocol>
    AVAudioPlayer *audioPlayer;

@property (nonatomic, retain) AVAudioPlayer *audioPlayer;

的.m

audioPlayer = [[AVAudioPlayer alloc] initWithData:dataAudio error:nil];

audioPlayer.delegate = self;

 float sliderLength = [audioPlayer duration];