expose paused as option in VideoEdito and VideoPlayerPanel
This commit is contained in:
parent
d9c69a0975
commit
033155cc51
2 changed files with 12 additions and 3 deletions
|
@ -43,6 +43,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
layers: [],
|
||||
muted: false,
|
||||
out: 0,
|
||||
paused: true,
|
||||
position: 0,
|
||||
posterFrame: 0,
|
||||
resolution: 0,
|
||||
|
@ -253,7 +254,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
'in': self.options['in'],
|
||||
muted: self.options.muted,
|
||||
out: self.options.out,
|
||||
paused: true,
|
||||
paused: self.options.paused,
|
||||
position: type == 'play' ? self.options.position : self.options[type],
|
||||
posterFrame: self.options.posterFrame,
|
||||
resolution: self.options.resolution,
|
||||
|
@ -280,6 +281,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
that.triggerEvent('muted', data);
|
||||
},
|
||||
paused: function(data) {
|
||||
self.options.paused = data.paused;
|
||||
that.triggerEvent('paused', data);
|
||||
},
|
||||
playing: function(data) {
|
||||
|
@ -1390,6 +1392,10 @@ Ox.VideoEditor = function(options, self) {
|
|||
setSizes();
|
||||
} else if (key == 'in' || key == 'out') {
|
||||
setPoint(key, value);
|
||||
} else if (key == 'paused') {
|
||||
self.$player[0].options({
|
||||
paused: value
|
||||
});
|
||||
} else if (key == 'position') {
|
||||
setPosition(value);
|
||||
} else if (key == 'selected') {
|
||||
|
|
|
@ -37,7 +37,7 @@ Ox.VideoPanel = function(options, self) {
|
|||
loop: false, // fixme: used?
|
||||
muted: false,
|
||||
out: 0,
|
||||
paused: false,
|
||||
paused: true,
|
||||
playInToOut: false,
|
||||
position: 0,
|
||||
poster: '',
|
||||
|
@ -103,7 +103,7 @@ Ox.VideoPanel = function(options, self) {
|
|||
'in': self.options['in'],
|
||||
muted: self.options.muted,
|
||||
out: self.options.out,
|
||||
paused: true,
|
||||
paused: self.options.paused,
|
||||
position: self.options.position,
|
||||
resolution: self.options.resolution,
|
||||
scaleToFill: self.options.scaleToFill,
|
||||
|
@ -132,6 +132,7 @@ Ox.VideoPanel = function(options, self) {
|
|||
that.triggerEvent('muted', data);
|
||||
},
|
||||
paused: function(data) {
|
||||
self.options.paused = data.paused;
|
||||
that.triggerEvent('paused', data);
|
||||
},
|
||||
playing: function(data) {
|
||||
|
@ -454,6 +455,8 @@ Ox.VideoPanel = function(options, self) {
|
|||
self.$video.options({height: getPlayerHeight()});
|
||||
} else if (key == 'in' || key == 'out') {
|
||||
setPoint(key, value);
|
||||
} else if (key == 'paused') {
|
||||
self.$video.options({paused: value});
|
||||
} else if (key == 'position') {
|
||||
self.$video.options({position: value});
|
||||
self.$timeline.options({position: value});
|
||||
|
|
Loading…
Reference in a new issue