0

AVPlayerViewController forward/rewind buttons beside the play button do not seem to work for HLS, but work for an mp4 stream (non - local, played from internet). How can I get it working for HLS? Is there any separate way to make it work for HLS?

basum
  • 319
  • 1
  • 3
  • 18

1 Answers1

0

This is not supported by the player.
You can disable those buttons using the code below:

if([playerItem canStepBackward] && [playerItem canStepForward]){
        [playerViewController setShowsPlaybackControls:YES];
    }
    else{
        [playerViewController setShowsPlaybackControls:NO];
    }
arunjos007
  • 4,105
  • 1
  • 28
  • 43
barryjones
  • 2,149
  • 1
  • 17
  • 21