load timeline overlays(subtitles, cuts, results) more asynchronously
This commit is contained in:
parent
ca22ed9c8a
commit
be9ec5a86a
2 changed files with 21 additions and 16 deletions
|
@ -71,7 +71,7 @@ Ox.LargeVideoTimeline = function(options, self) {
|
|||
.css({left: self.center + 'px'})
|
||||
.appendTo(that);
|
||||
|
||||
setSubtitles();
|
||||
setTimeout(setSubtitles);
|
||||
|
||||
if (self.options.showInToOut) {
|
||||
if (self.options['in']) {
|
||||
|
@ -94,13 +94,15 @@ Ox.LargeVideoTimeline = function(options, self) {
|
|||
}
|
||||
}
|
||||
|
||||
self.options.cuts.forEach(function(v, i) {
|
||||
self.$cuts[i] = $('<img>')
|
||||
.addClass('OxCut')
|
||||
.css({left: (v * self.fps) + 'px'})
|
||||
.appendTo(self.$timeline);
|
||||
setTimeout(function() {
|
||||
self.options.cuts.forEach(function(v, i) {
|
||||
self.$cuts[i] = $('<img>')
|
||||
.addClass('OxCut')
|
||||
.css({left: (v * self.fps) + 'px'})
|
||||
.appendTo(self.$timeline);
|
||||
});
|
||||
self.$timeline.find('.OxCut').attr({src: Ox.UI.getImageURL('markerCut')});
|
||||
});
|
||||
self.$timeline.find('.OxCut').attr({src: Ox.UI.getImageURL('markerCut')});
|
||||
|
||||
self.$markerPosition = $('<img>')
|
||||
.addClass('OxMarkerPosition')
|
||||
|
|
|
@ -138,9 +138,6 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
|||
}
|
||||
|
||||
self.$subtitles = $('<img>')
|
||||
.attr({
|
||||
src: getImageURL('subtitles')
|
||||
})
|
||||
.css({
|
||||
position: 'absolute',
|
||||
top: self.imageTop + 'px',
|
||||
|
@ -150,9 +147,6 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
|||
.appendTo(that);
|
||||
|
||||
self.$results = $('<img>')
|
||||
.attr({
|
||||
src: getImageURL('results')
|
||||
})
|
||||
.css({
|
||||
position: 'absolute',
|
||||
top: self.imageTop + 'px',
|
||||
|
@ -162,9 +156,6 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
|||
.appendTo(that);
|
||||
|
||||
self.$selection = $('<img>')
|
||||
.attr({
|
||||
src: getImageURL('selection')
|
||||
})
|
||||
.css({
|
||||
position: 'absolute',
|
||||
top: self.imageTop + 'px',
|
||||
|
@ -173,6 +164,18 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
|||
})
|
||||
.appendTo(that);
|
||||
|
||||
setTimeout(function() {
|
||||
self.$subtitles.attr({
|
||||
src: getImageURL('subtitles')
|
||||
});
|
||||
self.$results.attr({
|
||||
src: getImageURL('results')
|
||||
});
|
||||
self.$selection.attr({
|
||||
src: getImageURL('selection')
|
||||
});
|
||||
});
|
||||
|
||||
function getClipTimeline() {
|
||||
var $canvas, context, image,
|
||||
firstTile, lastTile, tileHeight, tileOffset, tileWidth;
|
||||
|
|
Loading…
Reference in a new issue