Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.