开发者

repeat AVPlayerItem in AVQueuePlayer

开发者 https://www.devze.com 2023-02-08 04:11 出处:网络
I am using AVQueuePlayer to play my list of videos. I want to play one video continuously unless I call for second video to play. Now, Video1 plays and when it ends, calls for video2 to play which I d

I am using AVQueuePlayer to play my list of videos. I want to play one video continuously unless I call for second video to play. Now, Video1 plays and when it ends, calls for video2 to play which I don't like.

Secondly, there is a delay in b开发者_如何学Goetween two videos. Is there any way of smooth transition from 1 video to second one?


Regarding your first question: Set the AVQueuePlayer's actionAtItemEnd property to AVPlayerActionAtItemEndNone. Then register for AVPlayerItemDidPlayToEndTimeNotification and inside the function that treats this notification call [player seekToTime:kCMTimeZero], which plays your current video from the beginning.
Second question: You could take care of this case inside the above function also.

0

精彩评论

暂无评论...
验证码 换一张
取 消