mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 02:08:21 +00:00
frame-by-frame navigation
This commit is contained in:
parent
fb8482b007
commit
656d41d43d
@ -100,7 +100,7 @@ export default {
|
|||||||
this.hotkeysPromise.then(() => {
|
this.hotkeysPromise.then(() => {
|
||||||
var self = this;
|
var self = this;
|
||||||
this.$hotkeys(
|
this.$hotkeys(
|
||||||
"f,m,j,k,l,c,space,up,down,left,right,0,1,2,3,4,5,6,7,8,9,shift+n,shift+,,shift+.,return",
|
"f,m,j,k,l,c,space,up,down,left,right,0,1,2,3,4,5,6,7,8,9,shift+n,shift+,,shift+.,return,.,,",
|
||||||
function (e, handler) {
|
function (e, handler) {
|
||||||
const videoEl = self.$refs.videoEl;
|
const videoEl = self.$refs.videoEl;
|
||||||
switch (handler.key) {
|
switch (handler.key) {
|
||||||
@ -199,6 +199,14 @@ export default {
|
|||||||
case "return":
|
case "return":
|
||||||
self.skipSegment(videoEl);
|
self.skipSegment(videoEl);
|
||||||
break;
|
break;
|
||||||
|
case ".":
|
||||||
|
videoEl.currentTime += 0.04;
|
||||||
|
e.preventDefault();
|
||||||
|
break;
|
||||||
|
case ",":
|
||||||
|
videoEl.currentTime -= 0.04;
|
||||||
|
e.preventDefault();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user