AVQueuePlayer not playing sounds

661 Views Asked by At

I don't seem to able to playback sounds using AVQueuePlayer. The application compiles and runs fine but i'm not getting any audio when the `imageTouched' method is called. Can anyone help?

-(void) imageTouched
{
    NSString * path1 = [[NSBundle mainBundle] pathForResource:@"sound1" ofType:@"wav"];
    NSString * path2 = [[NSBundle mainBundle] pathForResource:@"sound2" ofType:@"wav"];
    NSURL *url1 = [NSURL fileURLWithPath:path1];
    NSURL *url2 = [NSURL fileURLWithPath:path2];

    AVPlayerItem *firstSound = [AVPlayerItem playerItemWithURL:url1];
    AVPlayerItem *secondSound = [AVPlayerItem playerItemWithURL:url2];

    NSArray *sounds = [NSArray arrayWithObjects:firstSound, secondSound, nil];
    AVQueuePlayer *player = [AVQueuePlayer queuePlayerWithItems:sounds];

    [player play];
    NSLog(@"%d",player.status);

}

EDIT 1: I've checked to see if there was any problem with the filenames (case, spelling, etc) and there doesn't seem to be. I've been able to play the sounds with the following code but i really need to get AVQueuePlayer working. Please help!

NSString *path;
SystemSoundID soundId;
path = [[NSBundle mainBundle] pathForResource:@"sound1" ofType:@"wav"];
NSURL *url = [NSURL fileURLWithPath:path];
AudioServicesCreateSystemSoundID( (CFURLRef)objc_unretainedPointer( url), &soundId);
AudioServicesPlaySystemSound(soundId);
2

There are 2 best solutions below

0
On

I did nearly the same think but instead of declaring the AVQueuePlayer *player in the function, I declared it in the interface.

0
On

I realise it may be too late for you by now, but I suspect that reason is that the AVQueuePlayer is being autoreleased immediately, so no sound is played. Try [[AVQueuePlayer alloc] initWithItems:sounds] instead.