I'm currently making a drum machine using Xcode 4.2, AVFoundation, ios5.
i can get the drum samples to play and reduced the lag considerably by reducing the bit depth on the samples and converting them to mp3. what I'm having problems with is that the samples will only re-trigger once the sample has finished playing and i don't want to cut the drum samples down (the silence has already been trimmed)
heres the code for one button:
NSString *soundFilePath =
[[NSBundle mainBundle] pathForResource: @"kick4" ofType: @"mp3"];
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: soundFilePath];
//create a new AVAudioPlayer initialized with the URL to the file
AVAudioPlayer *newPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL: fileURL error: nil];
self.player = newPlayer;
//preloads buffers, gets ready to play
[player prepareToPlay];
//set delegate so we can get called back when the sound has finished player
[player setDelegate: self];
and heres the method..
- (void) audioPlayerDidFinishPlaying: (AVAudioPlayer *) player
successfully: (BOOL) flag {
if (flag == YES) {
self.playButton.enabled = YES; // the button is re-enabled
}
}
// implementing the play method
- (IBAction) play {
self.playButton.enabled = NO; // the button is disabled when playing
[player play];
i've currently got no errors and this is working, i'm hoping someone can shed some light on this issue for me :).
P.S. im sorry about the formatting, first time user here.