vime-js / vime

Customizable, extensible, accessible and framework agnostic media player. Modern alternative to Video.js and Plyr. Supports HTML5, HLS, Dash, YouTube, Vimeo, Dailymotion...
https://vimejs.com
MIT License
2.75k stars 154 forks source link

Basic Fast forward/ seek controls? #269

Open animemandir opened 2 years ago

animemandir commented 2 years ago

Hi i searched the entire vimejs site but couldn't find any control options for fast forward controls? I suppose it is not a feature here yet. I'm using nextjs, Every other control works fine, but Fast forward is missing ig. Sorry is this a very lame issue.

aminebeji commented 2 years ago

hello , i was having the same issues . So i decided to create my own buttons . with this line of code : backward : player.currentTime -= 10; forward : player.currentTime += 10; Hope it's help you.