void TryResetPlayhead()
        {
            AVPlayerItem cItem = Player.CurrentItem;

            if (cItem.CurrentTime >= cItem.Duration)
            {
                cItem.Seek(CMTime.Zero, CMTime.Zero, CMTime.Zero);
            }
        }
Esempio n. 2
0
 private void RevindVideo(NSNotification o)
 {
     _currentVideoPlayerItem.Seek(CMTime.Zero);
 }