使用[[SimpleAudioEngine sharedEngine] playEffect:@"sound.mp3"];
使用过的音频文件的限制长度是多少?
答案 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];