toggle playback rate 100% -> 200% -> 50% -> 100%
This commit is contained in:
parent
cebfedfdd4
commit
bd7aedb116
3 changed files with 20 additions and 1 deletions
|
|
@ -237,7 +237,9 @@ Ox.VideoAnnotationPanel = function(options, self) {
|
|||
setPoint('in', self.options.position);
|
||||
},
|
||||
key_k: function togglePlaybackRate() {
|
||||
that.options({playbackRate: self.options.playbackRate == 1 ? 2 : 1});
|
||||
that.options({
|
||||
playbackRate: self.options.playbackRate == 1 ? 2 : self.options.playbackRate == 2 ? 0.5 : 1
|
||||
});
|
||||
},
|
||||
key_l: toggleLoop,
|
||||
key_left: function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue