videojs / videojs-playlist

Playlist plugin for videojs
Other
366 stars 124 forks source link

Pause on select item? #186

Open seabasss opened 3 years ago

seabasss commented 3 years ago

I’ve found a way to play the video when an item is clicked, but is there a way to always paus when an item is clicked, even if the previous is currently playing?

gkatsev commented 3 years ago

Unfortunately, we don't have an option for that but you could potentially listen to playlistitem and call pause on the player.

seabasss commented 3 years ago

Thanks, I tried that earlier, but it didn't work. Something is triggering it to play after that event. I ended up adding a separate on click listener on the playlist buttons with a set timeout to pause it.

Please let me know if you can think of a better solution. Is there another event where I can put pause later in the chain?