upload webms as stream if they look like a stream
This commit is contained in:
parent
4ed0d56f4f
commit
5d4442d2ff
1 changed files with 86 additions and 3 deletions
|
@ -61,13 +61,36 @@ pandora.ui.uploadVideoDialog = function(data) {
|
||||||
title: Ox._('Select Video'),
|
title: Ox._('Select Video'),
|
||||||
maxFiles: 1,
|
maxFiles: 1,
|
||||||
width: 96
|
width: 96
|
||||||
|
}).css({
|
||||||
|
float: 'left'
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
click: function(data) {
|
click: function(data) {
|
||||||
if (data.files.length) {
|
if (data.files.length) {
|
||||||
cancelled = false;
|
cancelled = false;
|
||||||
$actionButton.hide();
|
$actionButton.replaceWith($actionButton = Ox.Button({
|
||||||
$closeButton.options('title', Ox._('Cancel'));
|
id: 'action',
|
||||||
upload(data.files[0]);
|
title: 'Upload',
|
||||||
|
disabled: true
|
||||||
|
}).css({
|
||||||
|
float: 'left'
|
||||||
|
}));
|
||||||
|
getInfo(data.files[0], function(info) {
|
||||||
|
console.log(info);
|
||||||
|
$actionButton.options({
|
||||||
|
disabled: false
|
||||||
|
}).bindEvent({
|
||||||
|
click: function() {
|
||||||
|
info.direct ? directUpload(data.files[0], info) : upload(data.files[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$info.html(formatVideoInfo(info));
|
||||||
|
$status.html(
|
||||||
|
info.direct
|
||||||
|
? Ox._('Your video will be used directly.')
|
||||||
|
: Ox._('Your video will be transcoded.')
|
||||||
|
);
|
||||||
|
});
|
||||||
|
//$closeButton.options('title', Ox._('Cancel'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -132,6 +155,17 @@ pandora.ui.uploadVideoDialog = function(data) {
|
||||||
$status.html(status || '').append($progress);
|
$status.html(status || '').append($progress);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function directUpload(file, info) {
|
||||||
|
resetProgress();
|
||||||
|
pandora.api.addMedia({
|
||||||
|
filename: info.name,
|
||||||
|
id: info.oshash,
|
||||||
|
item: pandora.site.itemRequiresVideo ? undefined : pandora.user.ui.item
|
||||||
|
}, function(result) {
|
||||||
|
uploadStream(result.data.item, info, file);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function encode() {
|
function encode() {
|
||||||
var filename = pandora.firefogg.sourceFilename,
|
var filename = pandora.firefogg.sourceFilename,
|
||||||
info = JSON.parse(pandora.firefogg.sourceInfo),
|
info = JSON.parse(pandora.firefogg.sourceInfo),
|
||||||
|
@ -168,6 +202,43 @@ pandora.ui.uploadVideoDialog = function(data) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getInfo(file, callback) {
|
||||||
|
Ox.oshash(file, function(oshash) {
|
||||||
|
var $video = $('<video>'),
|
||||||
|
url = URL.createObjectURL(file),
|
||||||
|
info = {
|
||||||
|
audio: [],
|
||||||
|
direct: false,
|
||||||
|
oshash: oshash,
|
||||||
|
name: file.name,
|
||||||
|
size: file.size,
|
||||||
|
video: []
|
||||||
|
};
|
||||||
|
$video.one('error', function(event) {
|
||||||
|
callback(info);
|
||||||
|
});
|
||||||
|
$video.one('loadedmetadata', function(event) {
|
||||||
|
info.duration = $video[0].duration;
|
||||||
|
if ($video[0].videoHeight > 0) {
|
||||||
|
info.video.push({
|
||||||
|
height: $video[0].videoHeight,
|
||||||
|
width: $video[0].videoWidth
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (info.duration) {
|
||||||
|
info.bitrate = info.size * 8 / info.duration / 1000;
|
||||||
|
}
|
||||||
|
var format = pandora.site.video.formats[0],
|
||||||
|
resolution = getResolution(info);
|
||||||
|
info.direct = Ox.endsWith(info.name, format)
|
||||||
|
&& info.video.lengh > 0
|
||||||
|
&& info.video[0].height <= resolution;
|
||||||
|
callback(info);
|
||||||
|
});
|
||||||
|
$video[0].src = url;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function getResolution(info) {
|
function getResolution(info) {
|
||||||
var height = info.video && info.video.length
|
var height = info.video && info.video.length
|
||||||
? info.video[0].height
|
? info.video[0].height
|
||||||
|
@ -411,6 +482,18 @@ pandora.ui.uploadVideoDialog = function(data) {
|
||||||
return html;
|
return html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function formatVideoInfo(info) {
|
||||||
|
var html = '<b>' + info.name + '</b><br>';
|
||||||
|
if (info.video && info.video.length > 0) {
|
||||||
|
html += info.video[0].width + '×' + info.video[0].height;
|
||||||
|
}
|
||||||
|
html += '<br>' + Ox.formatValue(info.size, 'B');
|
||||||
|
if(info.duration) {
|
||||||
|
html += ' / ' + Ox.formatDuration(info.duration);
|
||||||
|
}
|
||||||
|
return html;
|
||||||
|
}
|
||||||
|
|
||||||
function selectVideo() {
|
function selectVideo() {
|
||||||
cancelled = false;
|
cancelled = false;
|
||||||
pandora.firefogg = new Firefogg();
|
pandora.firefogg = new Firefogg();
|
||||||
|
|
Loading…
Reference in a new issue