In my project i have a function that allows me to start a music with a random delay :

-(void)playTrack {
AudioSessionSetActive(true);
// Set up audio session, to prevent iPhone from deep sleeping, while playing sounds
UInt32 category = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty (
                         kAudioSessionProperty_AudioCategory,
                         sizeof (category),
                         &category
                         );

//UInt32 category = kAudioSessionCategory_MediaPlayback;
OSStatus result = AudioSessionSetProperty(kAudioSessionProperty_AudioCategory,
                                          sizeof(category), &category);

if (result){
    NSLog(@"ERROR SETTING AUDIO CATEGORY!\n");
}

result = AudioSessionSetActive(true);
if (result) {
    NSLog(@"ERROR SETTING AUDIO SESSION ACTIVE!\n");
}

NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"track" ofType:@"mp3"];
NSData *sampleData = [[NSData alloc] initWithContentsOfFile:soundFilePath];
NSError *audioError = nil;

AVAudioPlayer *trackPlayer = [[AVAudioPlayer alloc] initWithData:sampleData error:&audioError];
[sampleData release];
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: nil];



if(audioError != nil) {
    NSLog(@"An audio error occurred: \"%@\"", audioError);
}
else {
    int delay = (arc4random() %60)+1;
    NSTimeInterval shortStartDelay = delay;

    [trackPlayer playAtTime:shortStartDelay];
}}

when i call this function the delay does not always work correctly, you in fact if the value of the variable "delay" is 1,2,3 it works correctly but if is 7,20,55, etc. etc. does not start, or even the audio start from the beginning. The file is an mp3 and lasts about 240sec, what is wrong in my code?

EDIT:

I checked the operation, in fact the above function works properly, the audio file starts after the second valued in the variable "delay" but I really was trying to do something else that is not to start the file after "number" of seconds from the beginning, but start it immediately but the second "number" of timeline, for example if "delay" returns 20 I did not want the audio went away after 20 seconds, but that start song by second 20 forward. Does anyone know how to help me?

thanks

Thanks

link|improve this question

It looks like you are not using ARC, when is TrackPlayer release? You may be releasing it before the delay is over. – Barlow Tucker Feb 10 at 6:26
..sorry but in which point of code? thanks – almal Feb 10 at 6:46
after [trackPlayer playAtTime:shortStartDelay]; i write [trackPlayer release]; correct?...thanks – almal Feb 10 at 7:38
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.