2011-10-22 11:24:26 +00:00
|
|
|
/***
|
|
|
|
Pandora embed
|
|
|
|
***/
|
|
|
|
Ox.load('UI', {
|
|
|
|
debug: false,
|
|
|
|
hideScreen: false,
|
|
|
|
loadImages: true,
|
|
|
|
showScreen: true,
|
|
|
|
theme: 'modern'
|
|
|
|
}, function() {
|
|
|
|
window.pandora = new Ox.App({url: '/api/'}).bindEvent({
|
|
|
|
load: function(data) {
|
|
|
|
Ox.extend(pandora, {
|
|
|
|
site: data.site,
|
|
|
|
user: data.user.level == 'guest' ? Ox.clone(data.site.user) : data.user,
|
|
|
|
ui: {},
|
|
|
|
clip: function(item, inPoint, outPoint) {
|
|
|
|
Ox.print('!@#!@#!@#', inPoint, outPoint);
|
|
|
|
var that = Ox.Element();
|
|
|
|
pandora.api.get({id: item, keys: []}, function(result) {
|
|
|
|
var video = {};
|
|
|
|
pandora.site.video.resolutions.forEach(function(resolution) {
|
|
|
|
video[resolution] = Ox.range(result.data.parts).map(function(i) {
|
2011-11-27 21:49:58 +00:00
|
|
|
var part = (i + 1),
|
|
|
|
prefix = pandora.site.site.videoprefix.replace('PART', part);
|
|
|
|
return prefix + '/' + item + '/'
|
|
|
|
+ resolution + 'p' + part + '.' + pandora.user.videoFormat;
|
2011-10-22 11:24:26 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
that.append(pandora.player = Ox.VideoPlayer({
|
|
|
|
controlsBottom: ['play', 'playInToOut', 'space', 'position'],
|
|
|
|
enableFind: false,
|
|
|
|
enableFullscreen: true,
|
|
|
|
enableVolume: true,
|
|
|
|
externalControls: false,
|
|
|
|
height: document.height,
|
|
|
|
'in': inPoint,
|
|
|
|
out: outPoint,
|
|
|
|
paused: true,
|
|
|
|
position: inPoint,
|
|
|
|
poster: '/' + item + '/' + '128p' + inPoint +'.jpg',
|
|
|
|
showMarkers: true,
|
|
|
|
showMilliseconds: 2,
|
|
|
|
title: result.data.title,
|
|
|
|
video: video,
|
|
|
|
width: document.width,
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
position: function(data) {
|
|
|
|
if(data.position<inPoint || data.position>outPoint) {
|
|
|
|
if(!pandora.player.options('paused'))
|
|
|
|
pandora.player.togglePaused();
|
|
|
|
pandora.player.options({
|
|
|
|
position: inPoint,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
);
|
|
|
|
Ox.UI.hideLoadingScreen();
|
|
|
|
});
|
|
|
|
return that;
|
2011-10-29 17:46:46 +00:00
|
|
|
},
|
2011-10-22 11:24:26 +00:00
|
|
|
});
|
|
|
|
Ox.extend(pandora.user, {
|
|
|
|
videoFormat: Ox.UI.getVideoFormat(pandora.site.video.formats)
|
|
|
|
});
|
|
|
|
var item = document.location.pathname.split('/')[1],
|
|
|
|
inPoint = 10,
|
|
|
|
outPoint = 15;
|
|
|
|
pandora.ui.info = pandora.clip(item, inPoint, outPoint)
|
|
|
|
.css({width: '100%', height: '100%'})
|
|
|
|
.appendTo(document.body);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|