i made a simple app where i can record myself and then sample what i've recorded. Since i like spamming buttons, i tried it with my own app. The result was, about 20 the same sounds of myself talking overlaping and creating a horrible mess. How can i prevent such thing in the future?
That's my code:
.h
-(IBAction)record {
TempRecFile = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithString:@"VoiceFile"]]];
recorder = [[AVAudioRecorder alloc] initWithURL:TempRecFile settings:nil error:nil];
[recorder setDelegate:self];
[recorder prepareToRecord];
[recorder record];
}
-(IBAction)playback {
[recorder stop];
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:TempRecFile error:nil];
player.volume = 1;
[player play];
}
Later on i want to play multiple sounds attached to multiple buttons and if all of those start overlaping, the users ears would probably start bleeding very shortly... :(
The problem with multiple sound buttons would be: I would need to restrict every sound to overlaping only with itself. How can i do such thing?