We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c61ed9 commit 9382eabCopy full SHA for 9382eab
1 file changed
hackyplayer/static/js/videolog.js
@@ -1,5 +1,14 @@
1
var framerate = 50
2
3
+function bpp () {
4
+ // Button play pause
5
+ video = document.getElementById("video1")
6
+ if (video.paused) {
7
+ video.play()
8
+ } else {
9
+ video.pause()
10
+ }
11
+}
12
function bff (frames=1) {
13
// Button Frame Forward
14
document.getElementById("video1").currentTime = document.getElementById("video1").currentTime + frames/framerate
0 commit comments