How to replace AVPlayer thumbnail image?

Viewed 3365

Is there any way to replace AVPlayer thumbnail image? I need to add a custom image as thumbnail layer

1 Answers

I got a simple solution for this. we can add any UIImage to the contentOverlayView, it will not hide the Play/Pause controls and we can hide this imageView later.

[self.moviePlayerController.contentOverlayView addSubview:placeHolderImageView];
Related