2012-03-17 00:15:06 +00:00
|
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
pandora.ui.uploadDialog = function(data) {
|
2012-06-18 10:53:11 +00:00
|
|
|
|
|
2012-06-18 11:06:24 +00:00
|
|
|
|
var cancelled = false,
|
2012-06-18 10:53:11 +00:00
|
|
|
|
file,
|
2012-03-17 00:15:06 +00:00
|
|
|
|
selectFile,
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$actionButton,
|
|
|
|
|
$closeButton,
|
2012-06-18 10:53:11 +00:00
|
|
|
|
$content = Ox.Element().css({margin: '16px'}),
|
|
|
|
|
$info = $('<div>').css({padding: '4px'})
|
|
|
|
|
.html('Please select the video file you want to upload.'),
|
|
|
|
|
$progress,
|
|
|
|
|
$status = $('<div>').css({padding: '4px', paddingTop: '8px'}),
|
2012-03-17 00:15:06 +00:00
|
|
|
|
that = Ox.Dialog({
|
|
|
|
|
buttons: [
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$closeButton = Ox.Button({
|
2012-03-17 00:15:06 +00:00
|
|
|
|
id: 'close',
|
|
|
|
|
title: 'Close'
|
|
|
|
|
}).bindEvent({
|
|
|
|
|
click: function() {
|
|
|
|
|
that.triggerEvent('close');
|
|
|
|
|
}
|
|
|
|
|
}),
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$actionButton = Ox.Button({
|
2012-03-17 00:15:06 +00:00
|
|
|
|
id: 'action',
|
|
|
|
|
title: 'Select Video'
|
|
|
|
|
}).bindEvent({
|
|
|
|
|
click: function() {
|
2012-06-18 11:06:24 +00:00
|
|
|
|
if ($actionButton.options('title') == 'Select Video') {
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (selectVideo()) {
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$actionButton.options('title', 'Upload');
|
2012-03-17 00:15:06 +00:00
|
|
|
|
}
|
2012-06-18 11:06:24 +00:00
|
|
|
|
} else if ($actionButton.options('title') == 'Cancel') {
|
2012-06-10 18:31:02 +00:00
|
|
|
|
cancelled = true;
|
2012-03-17 00:15:06 +00:00
|
|
|
|
pandora.firefogg && pandora.firefogg.cancel();
|
|
|
|
|
pandora.$ui.upload && pandora.$ui.upload.abort();
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$actionButton.options('title', 'Select Video');
|
|
|
|
|
$closeButton.show();
|
2012-03-17 00:15:06 +00:00
|
|
|
|
} else {
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$actionButton.options('title', 'Cancel');
|
|
|
|
|
$closeButton.hide();
|
2012-03-17 00:15:06 +00:00
|
|
|
|
encode();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
],
|
2012-06-18 10:53:11 +00:00
|
|
|
|
content: $content,
|
2012-03-17 00:15:06 +00:00
|
|
|
|
height: 128,
|
|
|
|
|
removeOnClose: true,
|
|
|
|
|
width: 368,
|
2012-05-28 14:10:11 +00:00
|
|
|
|
title: 'Upload Video',
|
2012-03-17 00:15:06 +00:00
|
|
|
|
})
|
|
|
|
|
.bindEvent({
|
|
|
|
|
close: function(data) {
|
|
|
|
|
if (pandora.firefogg) {
|
|
|
|
|
pandora.firefogg.cancel();
|
|
|
|
|
delete pandora.firefogg;
|
|
|
|
|
}
|
|
|
|
|
that.close();
|
|
|
|
|
}
|
2012-06-18 10:53:11 +00:00
|
|
|
|
});
|
2012-03-17 00:15:06 +00:00
|
|
|
|
|
2012-06-18 10:53:11 +00:00
|
|
|
|
// FIXME: is this necessary?
|
2012-03-17 00:15:06 +00:00
|
|
|
|
pandora._status = $status;
|
|
|
|
|
pandora._info = $info;
|
2012-06-18 10:56:31 +00:00
|
|
|
|
if (typeof Firefogg == 'undefined') {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
/*
|
|
|
|
|
selectFile = $('<input>')
|
|
|
|
|
.attr({
|
|
|
|
|
type: 'file'
|
|
|
|
|
})
|
|
|
|
|
.css({
|
|
|
|
|
padding: '8px'
|
|
|
|
|
})
|
2012-05-28 14:10:11 +00:00
|
|
|
|
.on({
|
2012-03-17 00:15:06 +00:00
|
|
|
|
change: function(event) {
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (this.files.length) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
file = this.files[0];
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (file.type == 'video/webm') {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
$status.html('');
|
|
|
|
|
uploadButton.options({
|
|
|
|
|
disabled: false
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
$status.html('Currently only WebM files are supported. (<a href="/help/encoding">Help encoding video</a>)');
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
uploadButton.options({
|
|
|
|
|
disabled: true
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
2012-06-18 10:53:11 +00:00
|
|
|
|
.appendTo($content);
|
2012-03-17 00:15:06 +00:00
|
|
|
|
*/
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$info.html(
|
2012-06-18 10:53:11 +00:00
|
|
|
|
'Currently, video upload is only supported in '
|
2012-06-18 11:06:24 +00:00
|
|
|
|
+ '<a target="_new" href="http://mozilla.org/firefox/">Firefox</a>, with '
|
2012-06-18 10:53:11 +00:00
|
|
|
|
+ '<a target="_new" href="http://firefogg.org/">Firefogg</a> installed.<br><br>'
|
|
|
|
|
+ 'Alternatively, you can use '
|
|
|
|
|
+ '<a target="_new" href="https://wiki.0x2620.org/wiki/pandora_client">pandora_client</a>.'
|
2012-03-17 00:15:06 +00:00
|
|
|
|
);
|
2012-06-18 11:06:24 +00:00
|
|
|
|
$actionButton.hide();
|
2012-03-17 00:15:06 +00:00
|
|
|
|
}
|
2012-06-18 10:53:11 +00:00
|
|
|
|
$content.append($info);
|
|
|
|
|
$content.append($status);
|
2012-03-17 00:15:06 +00:00
|
|
|
|
|
|
|
|
|
function aspectratio(ratio) {
|
2012-06-18 10:53:11 +00:00
|
|
|
|
var denominator, numerator;
|
2012-03-17 00:15:06 +00:00
|
|
|
|
ratio = ratio.split(':');
|
|
|
|
|
numerator = ratio[0];
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (ratio.length == 2) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
denominator = ratio[1];
|
|
|
|
|
}
|
2012-06-18 10:53:11 +00:00
|
|
|
|
if (Math.abs(numerator / denominator - 4/3) < 0.03) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
numerator = 4;
|
|
|
|
|
denominator = 3;
|
2012-06-18 10:53:11 +00:00
|
|
|
|
} else if (Math.abs(numerator / denominator - 16/9) < 0.02) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
numerator = 16;
|
|
|
|
|
denominator = 9;
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
denominator: denominator,
|
2012-06-18 10:53:11 +00:00
|
|
|
|
'float': numerator / denominator,
|
|
|
|
|
numerator: numerator,
|
|
|
|
|
ratio: numerator + ':' + denominator
|
2012-03-17 00:15:06 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function resetProgress() {
|
|
|
|
|
$progress = Ox.Progressbar({
|
|
|
|
|
progress: 0,
|
|
|
|
|
showPercent: true,
|
|
|
|
|
showTime: true,
|
|
|
|
|
width: 304
|
|
|
|
|
});
|
|
|
|
|
$status.html('').append($progress);
|
|
|
|
|
}
|
2012-06-18 10:53:11 +00:00
|
|
|
|
|
2012-03-17 00:15:06 +00:00
|
|
|
|
function encode() {
|
2012-06-18 10:53:11 +00:00
|
|
|
|
var filename = pandora.firefogg.sourceFilename,
|
|
|
|
|
info = JSON.parse(pandora.firefogg.sourceInfo),
|
|
|
|
|
item,
|
|
|
|
|
oshash = info.oshash;
|
2012-03-17 00:15:06 +00:00
|
|
|
|
resetProgress();
|
|
|
|
|
pandora.api.addFile({
|
|
|
|
|
filename: filename,
|
2012-06-18 10:53:11 +00:00
|
|
|
|
id: oshash,
|
2012-03-17 00:15:06 +00:00
|
|
|
|
info: info
|
|
|
|
|
}, function(result) {
|
|
|
|
|
item = result.data.item;
|
|
|
|
|
pandora.firefogg.encode(
|
|
|
|
|
getEncodingOptions(info),
|
|
|
|
|
function(result, file) {
|
|
|
|
|
result = JSON.parse(result);
|
|
|
|
|
if (result.progress != 1) {
|
2012-06-18 10:53:11 +00:00
|
|
|
|
$status.html(cancelled ? 'Encoding cancelled.' : 'Encoding failed.');
|
2012-03-17 00:15:06 +00:00
|
|
|
|
delete pandora.firefogg;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
setTimeout(function() {
|
|
|
|
|
//$status.html('uploading... ');
|
|
|
|
|
pandora.$ui.upload = pandora.ui.upload(oshash, file)
|
|
|
|
|
.bindEvent({
|
|
|
|
|
progress: function(data) {
|
|
|
|
|
var progress = data.progress || 0;
|
2012-06-18 10:53:11 +00:00
|
|
|
|
$progress.options({progress: 0.5 + progress / 2});
|
2012-03-17 00:15:06 +00:00
|
|
|
|
},
|
|
|
|
|
done: function(data) {
|
2012-06-21 16:40:44 +00:00
|
|
|
|
Ox.Request.clearCache();
|
2012-03-17 00:15:06 +00:00
|
|
|
|
pandora.UI.set({
|
|
|
|
|
item: item,
|
|
|
|
|
itemView: 'files'
|
|
|
|
|
});
|
|
|
|
|
delete pandora.firefogg;
|
|
|
|
|
that.close();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
function(progress) {
|
|
|
|
|
progress = JSON.parse(progress).progress || 0;
|
|
|
|
|
$progress.options({progress: progress / 2});
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getEncodingOptions(info) {
|
2012-06-18 10:53:11 +00:00
|
|
|
|
var bpp = 0.17,
|
2012-03-17 00:15:06 +00:00
|
|
|
|
dar,
|
2012-06-18 10:53:11 +00:00
|
|
|
|
format = pandora.site.video.formats[0],
|
|
|
|
|
fps,
|
|
|
|
|
options = {},
|
|
|
|
|
resolution = Ox.max(pandora.site.video.resolutions);
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (format == 'webm') {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
options.videoCodec = 'vp8';
|
|
|
|
|
options.audioCodec = 'vorbis';
|
|
|
|
|
} else if (format == 'ogv') {
|
|
|
|
|
options.videoCodec = 'theora';
|
|
|
|
|
options.audioCodec = 'vorbis';
|
|
|
|
|
}
|
|
|
|
|
if (resolution == 720) {
|
|
|
|
|
options.height = 720;
|
|
|
|
|
options.samplerate = 48000;
|
|
|
|
|
options.audioQuality = 5;
|
|
|
|
|
} else if (resolution == 480) {
|
|
|
|
|
options.height = 480;
|
|
|
|
|
options.samplerate = 44100;
|
|
|
|
|
options.audioQuality = 3;
|
|
|
|
|
options.channels = 2;
|
2012-04-19 16:14:43 +00:00
|
|
|
|
} else if (resolution == 432) {
|
|
|
|
|
options.height = 432;
|
|
|
|
|
options.samplerate = 44100;
|
|
|
|
|
options.audioQuality = 3;
|
|
|
|
|
options.channels = 2;
|
2012-03-17 00:15:06 +00:00
|
|
|
|
} else if (resolution == 360) {
|
|
|
|
|
options.height = 320;
|
|
|
|
|
options.samplerate = 44100;
|
|
|
|
|
options.audioQuality = 1;
|
|
|
|
|
options.channels = 1;
|
2012-04-19 16:14:43 +00:00
|
|
|
|
} else if (resolution == 288) {
|
|
|
|
|
options.height = 288;
|
|
|
|
|
options.samplerate = 44100;
|
|
|
|
|
options.audioQuality = 0;
|
|
|
|
|
options.channels = 1;
|
2012-03-17 00:15:06 +00:00
|
|
|
|
} else if (resolution == 240) {
|
|
|
|
|
options.height = 240;
|
|
|
|
|
options.samplerate = 44100;
|
|
|
|
|
options.audioQuality = 0;
|
|
|
|
|
options.channels = 1;
|
2012-04-19 16:14:43 +00:00
|
|
|
|
} else if (resolution == 144) {
|
|
|
|
|
options.height = 144;
|
|
|
|
|
options.samplerate = 22050;
|
|
|
|
|
options.audioQuality = -1;
|
|
|
|
|
options.audioBitrate = 22;
|
|
|
|
|
options.channels = 1;
|
2012-03-17 00:15:06 +00:00
|
|
|
|
} else if (resolution == 96) {
|
|
|
|
|
options.height = 96;
|
|
|
|
|
options.samplerate = 22050;
|
|
|
|
|
options.audioQuality = -1;
|
|
|
|
|
options.audioBitrate = 22;
|
|
|
|
|
options.channels = 1;
|
|
|
|
|
}
|
|
|
|
|
if (info.video && info.video[0].display_aspect_ratio) {
|
|
|
|
|
dar = aspectratio(info.video[0].display_aspect_ratio);
|
|
|
|
|
fps = aspectratio(info.video[0].framerate).float;
|
|
|
|
|
options.width = parseInt(dar.float * options.height, 10);
|
|
|
|
|
options.width += options.width % 2;
|
2012-06-18 10:53:11 +00:00
|
|
|
|
// interlaced hdv material is detected with double framerates
|
2012-03-17 00:15:06 +00:00
|
|
|
|
if (fps == 50) {
|
|
|
|
|
options.framerate = 25;
|
|
|
|
|
} else if (fps == 60) {
|
|
|
|
|
options.framerate = 30;
|
|
|
|
|
}
|
|
|
|
|
if (Math.abs(options.width/options.height - dar.float) < 0.02) {
|
|
|
|
|
options.aspect = options.width + ':' + options.height;
|
|
|
|
|
} else {
|
|
|
|
|
options.aspect = dar.ratio;
|
|
|
|
|
}
|
2012-06-18 10:53:11 +00:00
|
|
|
|
options.videoBitrate = Math.round(
|
|
|
|
|
options.height * options.width * fps * bpp / 1000
|
|
|
|
|
);
|
2012-03-17 00:15:06 +00:00
|
|
|
|
options.denoise = true;
|
|
|
|
|
options.deinterlace = true;
|
|
|
|
|
} else {
|
|
|
|
|
options.noVideo = true;
|
|
|
|
|
}
|
|
|
|
|
if (info.audio) {
|
|
|
|
|
if (options.cannels && info.audio[0].channels < options.channels) {
|
|
|
|
|
delete options.channels;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
options.noAudio = true;
|
|
|
|
|
delete options.samplerate;
|
|
|
|
|
delete options.audioQuality;
|
|
|
|
|
delete options.channels;
|
|
|
|
|
}
|
|
|
|
|
options.noUpscaling = true;
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (
|
|
|
|
|
(!info.video.length || (
|
|
|
|
|
info.video[0].codec == options.videoCodec
|
|
|
|
|
&& info.video[0].height <= options.height
|
|
|
|
|
))
|
|
|
|
|
&& (!info.audio.length || info.audio[0].codec == options.audioCodec)
|
|
|
|
|
) {
|
|
|
|
|
options = {passthrough: true};
|
2012-03-17 00:15:06 +00:00
|
|
|
|
}
|
|
|
|
|
return JSON.stringify(options);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatInfo(info) {
|
2012-06-18 10:53:11 +00:00
|
|
|
|
var html = '<b>' + info.path + '</b><br>';
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (info.video && info.video.length > 0) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
var video = info.video[0];
|
2012-06-18 10:53:11 +00:00
|
|
|
|
html += video.width + '×' + video.height + ' (' + video.codec + ')';
|
2012-03-17 00:15:06 +00:00
|
|
|
|
}
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (
|
|
|
|
|
info.video && info.video.length > 0
|
|
|
|
|
&& info.audio && info.audio.length > 0
|
|
|
|
|
) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
html += ' / ';
|
|
|
|
|
}
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (info.audio && info.audio.length > 0) {
|
2012-06-18 10:53:11 +00:00
|
|
|
|
var audio = info.audio[0];
|
|
|
|
|
html += {1: 'mono', 2: 'stereo', 6: '5.1'}[audio.channels]
|
|
|
|
|
+ ' ' + audio.samplerate / 1000 + ' kHz (' + audio.codec + ')';
|
2012-03-17 00:15:06 +00:00
|
|
|
|
}
|
2012-06-18 10:53:11 +00:00
|
|
|
|
html += '<br>' + Ox.formatValue(info.size, 'B')
|
|
|
|
|
+ ' / ' + Ox.formatDuration(info.duration);
|
2012-03-17 00:15:06 +00:00
|
|
|
|
return html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function selectVideo() {
|
2012-06-10 18:31:02 +00:00
|
|
|
|
cancelled = false;
|
2012-03-17 00:15:06 +00:00
|
|
|
|
pandora.firefogg = new Firefogg();
|
|
|
|
|
pandora.firefogg.setFormat(pandora.site.video.formats[0]);
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (pandora.firefogg.selectVideo()) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
var info = JSON.parse(pandora.firefogg.sourceInfo),
|
|
|
|
|
options = JSON.parse(getEncodingOptions(info)),
|
|
|
|
|
oshash = info.oshash,
|
|
|
|
|
filename = pandora.firefogg.sourceFilename,
|
|
|
|
|
item;
|
|
|
|
|
pandora.api.findFiles({
|
|
|
|
|
query: {
|
|
|
|
|
conditions: [{key: 'oshash', value: oshash}]
|
|
|
|
|
},
|
|
|
|
|
keys: ['id', 'available']
|
|
|
|
|
}, function(result) {
|
2012-06-10 18:31:02 +00:00
|
|
|
|
if (
|
2012-06-18 10:53:11 +00:00
|
|
|
|
result.data.items.length === 0
|
|
|
|
|
|| !result.data.items[0].available
|
2012-06-10 18:31:02 +00:00
|
|
|
|
) {
|
2012-03-17 00:15:06 +00:00
|
|
|
|
$info.html(formatInfo(info));
|
|
|
|
|
$status.html(
|
|
|
|
|
options.passthrough
|
|
|
|
|
? 'Your video will be uploaded directly.'
|
2012-06-18 10:53:11 +00:00
|
|
|
|
: 'Your video will be transcoded before upload.'
|
|
|
|
|
);
|
2012-03-17 00:15:06 +00:00
|
|
|
|
} else {
|
|
|
|
|
pandora.api.find({
|
|
|
|
|
query: {
|
|
|
|
|
conditions: [{key: 'oshash', value: oshash}]
|
|
|
|
|
},
|
|
|
|
|
keys: ['id']
|
|
|
|
|
}, function(result) {
|
|
|
|
|
pandora.UI.set({
|
|
|
|
|
item: result.data.items[0].id,
|
|
|
|
|
itemView: 'files'
|
|
|
|
|
});
|
|
|
|
|
delete pandora.firefogg;
|
|
|
|
|
that.close();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return that;
|
2012-06-18 10:53:11 +00:00
|
|
|
|
|
2012-03-17 00:15:06 +00:00
|
|
|
|
};
|