make +/- volume keyboard shortcut work in video and timeline views
This commit is contained in:
parent
529184887a
commit
7d188d8621
5 changed files with 46 additions and 19 deletions
|
@ -255,9 +255,11 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
|
|
||||||
[
|
[
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||||
'b', 'backslash', 'closebracket', 'comma', 'dot', 'equal',
|
'b', 'backslash', 'closebracket', 'comma', 'dot',
|
||||||
'f', 'g', 'h', 'i', 'minus', 'n', 'o', 'openbracket', 'p',
|
'equal', 'f', 'g', 'h', 'i', 'minus', 'n', 'o',
|
||||||
'shift_0', 'shift_g', 'shift_i', 'shift_o', 'slash', 'space'
|
'openbracket', 'p', 'shift_0', 'shift_equal',
|
||||||
|
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
||||||
|
'slash', 'space'
|
||||||
].forEach(function(key) {
|
].forEach(function(key) {
|
||||||
key = 'key_' + key;
|
key = 'key_' + key;
|
||||||
self.$annotations.bindEvent(key, function() {
|
self.$annotations.bindEvent(key, function() {
|
||||||
|
|
|
@ -125,9 +125,11 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
.appendTo(self.$folders);
|
.appendTo(self.$folders);
|
||||||
[
|
[
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||||
'b', 'backslash', 'closebracket', 'comma', 'dot', 'equal',
|
'b', 'backslash', 'closebracket', 'comma', 'dot',
|
||||||
'f', 'g', 'h', 'i', 'minus', 'n', 'o', 'openbracket', 'p',
|
'equal', 'f', 'g', 'h', 'i', 'minus', 'n', 'o',
|
||||||
'shift_0', 'shift_g', 'shift_i', 'shift_o', 'slash', 'space'
|
'openbracket', 'p', 'shift_0', 'shift_equal',
|
||||||
|
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
||||||
|
'slash', 'space'
|
||||||
].forEach(function(key) {
|
].forEach(function(key) {
|
||||||
key = 'key_' + key;
|
key = 'key_' + key;
|
||||||
self.$folder[i].bindEvent(key, function() {
|
self.$folder[i].bindEvent(key, function() {
|
||||||
|
|
|
@ -98,7 +98,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
key_equal: function() {
|
key_equal: function() {
|
||||||
self.options.videoSize == 'small' && toggleSize();
|
self.$player[0].changeVolume(0.1);
|
||||||
},
|
},
|
||||||
key_escape: function() {
|
key_escape: function() {
|
||||||
if (self.editing) {
|
if (self.editing) {
|
||||||
|
@ -123,7 +123,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
movePositionBy(-0.04);
|
movePositionBy(-0.04);
|
||||||
},
|
},
|
||||||
key_minus: function() {
|
key_minus: function() {
|
||||||
self.options.videoSize == 'large' && toggleSize();
|
self.$player[0].changeVolume(-0.1);
|
||||||
},
|
},
|
||||||
key_n: function() {
|
key_n: function() {
|
||||||
self.annotations.length && selectAnnotation(getNextAnnotation('annotation', 1));
|
self.annotations.length && selectAnnotation(getNextAnnotation('annotation', 1));
|
||||||
|
@ -144,6 +144,9 @@ Ox.VideoEditor = function(options, self) {
|
||||||
key_shift_down: function() {
|
key_shift_down: function() {
|
||||||
movePositionBy(self.options.duration);
|
movePositionBy(self.options.duration);
|
||||||
},
|
},
|
||||||
|
key_shift_equal: function() {
|
||||||
|
self.options.videoSize == 'small' && toggleSize();
|
||||||
|
},
|
||||||
key_shift_g: function() {
|
key_shift_g: function() {
|
||||||
self.results.length && selectAnnotation(getNextAnnotation('result', -1));
|
self.results.length && selectAnnotation(getNextAnnotation('result', -1));
|
||||||
},
|
},
|
||||||
|
@ -153,6 +156,9 @@ Ox.VideoEditor = function(options, self) {
|
||||||
key_shift_i: function() {
|
key_shift_i: function() {
|
||||||
goToPoint('in');
|
goToPoint('in');
|
||||||
},
|
},
|
||||||
|
key_shift_minus: function() {
|
||||||
|
self.options.videoSize == 'large' && toggleSize();
|
||||||
|
},
|
||||||
key_shift_o: function() {
|
key_shift_o: function() {
|
||||||
goToPoint('out');
|
goToPoint('out');
|
||||||
},
|
},
|
||||||
|
@ -370,6 +376,8 @@ Ox.VideoEditor = function(options, self) {
|
||||||
{key: '0', action: 'Mute/Unmute'},
|
{key: '0', action: 'Mute/Unmute'},
|
||||||
{key: '-', action: 'Turn Volume Down'},
|
{key: '-', action: 'Turn Volume Down'},
|
||||||
{key: '+', action: 'Turn Volume Up'},
|
{key: '+', action: 'Turn Volume Up'},
|
||||||
|
{key: Ox.UI.symbols.shift + '-', action: 'Small Player'},
|
||||||
|
{key: Ox.UI.symbols.shift + '+', action: 'Large Player'},
|
||||||
{key: Ox.UI.symbols.arrow_left, action: 'Go One Frame Back'},
|
{key: Ox.UI.symbols.arrow_left, action: 'Go One Frame Back'},
|
||||||
{key: Ox.UI.symbols.arrow_right, action: 'Go One Frame Forward'},
|
{key: Ox.UI.symbols.arrow_right, action: 'Go One Frame Forward'},
|
||||||
{key: Ox.UI.symbols.shift + Ox.UI.symbols.arrow_left, action: 'Go One Second Back'},
|
{key: Ox.UI.symbols.shift + Ox.UI.symbols.arrow_left, action: 'Go One Second Back'},
|
||||||
|
@ -683,9 +691,11 @@ Ox.VideoEditor = function(options, self) {
|
||||||
|
|
||||||
[
|
[
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||||
'b', 'backslash', 'closebracket', 'comma', 'dot', 'equal',
|
'b', 'backslash', 'closebracket', 'comma', 'dot',
|
||||||
'f', 'g', 'h', 'i', 'minus', 'n', 'o', 'openbracket', 'p',
|
'equal', 'f', 'g', 'h', 'i', 'minus', 'n', 'o',
|
||||||
'shift_0', 'shift_g', 'shift_i', 'shift_o', 'slash', 'space'
|
'openbracket', 'p', 'shift_0', 'shift_equal',
|
||||||
|
'shift_g', 'shift_i', 'shift_minus', 'shift_o',
|
||||||
|
'slash', 'space'
|
||||||
].forEach(function(key) {
|
].forEach(function(key) {
|
||||||
key = 'key_' + key;
|
key = 'key_' + key;
|
||||||
self.$annotationPanel.bindEvent(key, function() {
|
self.$annotationPanel.bindEvent(key, function() {
|
||||||
|
|
|
@ -62,6 +62,12 @@ Ox.VideoPanel = function(options, self) {
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
resize: resizeElement,
|
resize: resizeElement,
|
||||||
key_0: toggleMuted,
|
key_0: toggleMuted,
|
||||||
|
key_equal: function() {
|
||||||
|
self.$video.changeVolume(0.1);
|
||||||
|
},
|
||||||
|
key_minus: function() {
|
||||||
|
self.$video.changeVolume(-0.1);
|
||||||
|
},
|
||||||
key_space: togglePaused
|
key_space: togglePaused
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -239,9 +245,9 @@ Ox.VideoPanel = function(options, self) {
|
||||||
});
|
});
|
||||||
|
|
||||||
[
|
[
|
||||||
'0', 'b', 'backslash', 'closebracket', 'comma', 'dot',
|
'0', 'b', 'backslash', 'closebracket', 'comma', 'dot', 'equal', 'f',
|
||||||
'f', 'g', 'i', 'n', 'o', 'openbracket', 'p',
|
'g', 'i', 'minus', 'n', 'o', 'openbracket', 'p', 'shift_0', 'shift_g',
|
||||||
'shift_0', 'shift_g', 'shift_i', 'shift_o', 'slash', 'space'
|
'shift_i', 'shift_o', 'slash', 'space'
|
||||||
].forEach(function(key) {
|
].forEach(function(key) {
|
||||||
key = 'key_' + key;
|
key = 'key_' + key;
|
||||||
self.$annotationPanel.bindEvent(key, function() {
|
self.$annotationPanel.bindEvent(key, function() {
|
||||||
|
|
|
@ -191,7 +191,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
key_0: toggleMuted,
|
key_0: toggleMuted,
|
||||||
key_1: toggleScale,
|
key_1: toggleScale,
|
||||||
key_equal: function() {
|
key_equal: function() {
|
||||||
changeVolumeBy(0.1);
|
changeVolume(0.1);
|
||||||
},
|
},
|
||||||
key_escape: hideControlMenus,
|
key_escape: hideControlMenus,
|
||||||
key_f: focusFind,
|
key_f: focusFind,
|
||||||
|
@ -202,7 +202,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
setPosition(self.options.position - self.secondsPerFrame);
|
setPosition(self.options.position - self.secondsPerFrame);
|
||||||
},
|
},
|
||||||
key_minus: function() {
|
key_minus: function() {
|
||||||
changeVolumeBy(-0.1);
|
changeVolume(-0.1);
|
||||||
},
|
},
|
||||||
key_p: function() {
|
key_p: function() {
|
||||||
playInToOut();
|
playInToOut();
|
||||||
|
@ -1091,7 +1091,7 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
self.$copyrightIcon[self.censored ? 'show' : 'hide']();
|
self.$copyrightIcon[self.censored ? 'show' : 'hide']();
|
||||||
}
|
}
|
||||||
|
|
||||||
function changeVolumeBy(num) {
|
function changeVolume(num) {
|
||||||
showVolume();
|
showVolume();
|
||||||
self.options.volume = Ox.limit(self.options.volume + num, 0, 1);
|
self.options.volume = Ox.limit(self.options.volume + num, 0, 1);
|
||||||
setVolume(self.options.volume);
|
setVolume(self.options.volume);
|
||||||
|
@ -2120,8 +2120,10 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function showVolume() {
|
function showVolume() {
|
||||||
|
if (self.$volume) {
|
||||||
!self.interfaceIsVisible && showControls();
|
!self.interfaceIsVisible && showControls();
|
||||||
self.$volume && self.$volume.is(':hidden') && toggleVolume();
|
self.$volume.is(':hidden') && toggleVolume();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function submitFindInput(value, hasPressedEnter) {
|
function submitFindInput(value, hasPressedEnter) {
|
||||||
|
@ -2371,6 +2373,11 @@ Ox.VideoPlayer = function(options, self) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
that.changeVolume = function(num) {
|
||||||
|
changeVolume(num);
|
||||||
|
return that;
|
||||||
|
};
|
||||||
|
|
||||||
/*@
|
/*@
|
||||||
playInToOut <f> play in to out
|
playInToOut <f> play in to out
|
||||||
() -> <o> play in to out
|
() -> <o> play in to out
|
||||||
|
|
Loading…
Reference in a new issue