I am playing 7 videos on an AVPlayer. The videos are assigned on 7 different AVPlayerItem added together on NSArray. Each have notifications calling a functions that increments the index on the array holding the AVPlayerItem.
The video plays from 1 - 4 but freezes on the 5th video.
Below is my code.
AVPlayer *playerRecorded = [AVPlayer playerWithPlayerItem:[arrItem objectAtIndex:studyIndex]];
AVPlayerLayer *playRecordedLayer = [AVPlayerLayer playerLayerWithPlayer:playerRecorded];
if (playerRecorded.currentItem != [arrItem objectAtIndex:studyIndex]) {
[playerRecorded replaceCurrentItemWithPlayerItem:[arrItem objectAtIndex:studyIndex]];
}
playRecordedLayer.frame = viewForRecordedVideo.bounds;
[viewForRecordedVideo.layer addSublayer:playRecordedLayer];
[playerRecorded play];
playerRecorded.actionAtItemEnd = AVPlayerActionAtItemEndNone;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didFinishPlaybackRecorded:) name:AVPlayerItemDidPlayToEndTimeNotification object:[playerRecorded currentItem]];
I think this is a memory leak issue. Hope you can help me on this. Thank you.