pass subtitlesDefaultTrack and resolution in editor

This commit is contained in:
j 2014-09-16 13:07:09 +02:00
commit 8aa95d35f2
2 changed files with 5 additions and 6 deletions

View file

@ -920,7 +920,8 @@ pandora.getClipVideos = function(clip, resolution) {
resolution = resolution || pandora.user.ui.videoResolution;
return Ox.flatten(Ox.range(clip.parts).map(function(i) {
var item = {
src: pandora.getVideoURL(clip.item, resolution, i + 1)
src: pandora.getVideoURL(clip.item, resolution, i + 1),
resolution: resolution
};
if (currentTime + clip.durations[i] <= start || currentTime > end) {
item = null;