3

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

Vinu David Jose
  • 2,569
  • 1
  • 21
  • 38

1 Answers1

6

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];
Vinu David Jose
  • 2,569
  • 1
  • 21
  • 38