getVideoUrl -> getVideoURL; use min resolution
This commit is contained in:
parent
61465a3846
commit
3efd918424
1 changed files with 3 additions and 3 deletions
|
@ -132,7 +132,7 @@ Ox.load('UI', {
|
||||||
out: options.out,
|
out: options.out,
|
||||||
paused: options.paused,
|
paused: options.paused,
|
||||||
position: options['in'],
|
position: options['in'],
|
||||||
resolution: pandora.site.video.resolutions[0],
|
resolution: Ox.min(pandora.site.video.resolutions),
|
||||||
smallTimelineURL: '/' + ui.item + '/timeline16p.jpg',
|
smallTimelineURL: '/' + ui.item + '/timeline16p.jpg',
|
||||||
subtitles: data.subtitles,
|
subtitles: data.subtitles,
|
||||||
timeline: ui.videoTimeline,
|
timeline: ui.videoTimeline,
|
||||||
|
@ -242,14 +242,14 @@ Ox.load('UI', {
|
||||||
options.video = {};
|
options.video = {};
|
||||||
pandora.site.video.resolutions.forEach(function(resolution) {
|
pandora.site.video.resolutions.forEach(function(resolution) {
|
||||||
options.video[resolution] = Ox.range(data.parts).map(function(i) {
|
options.video[resolution] = Ox.range(data.parts).map(function(i) {
|
||||||
return getVideoUrl(data.item || pandora.user.ui.item, resolution, i + 1);
|
return getVideoURL(data.item || pandora.user.ui.item, resolution, i + 1);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
options.videoRatio = data.videoRatio;
|
options.videoRatio = data.videoRatio;
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getVideoUrl(id, resolution, part) {
|
function getVideoURL(id, resolution, part) {
|
||||||
var prefix = pandora.site.site.videoprefix
|
var prefix = pandora.site.site.videoprefix
|
||||||
.replace('{id}', id)
|
.replace('{id}', id)
|
||||||
.replace('{part}', part)
|
.replace('{part}', part)
|
||||||
|
|
Loading…
Reference in a new issue