also toggle playbackRate in timeline
This commit is contained in:
parent
bd7aedb116
commit
b017ba5ba1
1 changed files with 5 additions and 0 deletions
|
@ -106,6 +106,11 @@ Ox.VideoTimelinePanel = function(options, self) {
|
||||||
key_equal: function() {
|
key_equal: function() {
|
||||||
self.$video.changeVolume(0.1);
|
self.$video.changeVolume(0.1);
|
||||||
},
|
},
|
||||||
|
key_k: function togglePlaybackRate() {
|
||||||
|
that.options({
|
||||||
|
playbackRate: self.options.playbackRate == 1 ? 2 : self.options.playbackRate == 2 ? 0.5 : 1
|
||||||
|
});
|
||||||
|
},
|
||||||
key_minus: function() {
|
key_minus: function() {
|
||||||
self.$video.changeVolume(-0.1);
|
self.$video.changeVolume(-0.1);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue