videojs-overlay
videojs-overlay copied to clipboard
Overlay showing during seek
I have a requirement where we want to show information in an overlay while the video is paused. I've created an overlay with the start and end events of:
start: 'pause',
end: 'play',
Everything seems to work as expected when I hit play/pause. When I seek in the progress bar, the overlay shows for a split second because video.js pauses the video, sets the new time of the video and then plays it again. I don't want the overlay showing while a user is seeking. Is there a way to prevent the overlay from showing while the seek is occurring?