proper thumbnailing for images and videos

master
f0x 5 years ago
parent d4d1de4e95
commit ed62b9ce27

@ -27,6 +27,8 @@ let fileUpload = create({
this.props.addUpload(fileObject) this.props.addUpload(fileObject)
} }
reader.readAsDataURL(file) reader.readAsDataURL(file)
} else {
this.props.addUpload({file: file, preview: "/icons/file.svg"})
} }
}) })
}, },

@ -106,35 +106,45 @@ let input = create({
let mimeType = upload.file.type let mimeType = upload.file.type
let eventType = "m.file" let eventType = "m.file"
let additionalPromise let additionalPromise
if (mimeType.startsWith("image/")) { if (mimeType.startsWith("image/") || mimeType.startsWith("video/")) {
eventType = "m.image" function elementToThumbnail(element) {
// create and upload thumbnail return new Promise((resolve, reject) => {
let thumbnailType = "image/png" riot.createThumbnail(element,
if (mimeType == "image/jpeg") { element.width,
thumbnailType = mimeType element.height,
} thumbnailType
additionalPromise = riot.loadImageElement(upload.file) )
.then((img) => {
return riot.createThumbnail(img,
img.width,
img.height,
thumbnailType)
})
.catch((error) => { .catch((error) => {
console.error("neo: error getting thumbnail", error) console.error("neo: error getting thumbnail", error)
reject()
}) })
.then((thumbResult) => { .then((thumbResult) => {
return client.uploadContent(thumbResult.thumbnail, {onlyContentUri: false}) return client.uploadContent(thumbResult.thumbnail, {onlyContentUri: false})
}).then((response) => { }).then((response) => {
return { return resolve({
thumbnail_url: response.content_uri, thumbnail_url: response.content_uri,
thumbnail_info: { thumbnail_info: {
mimetype: thumbnailType mimetype: thumbnailType
} }
} })
}) })
} else if (mimeType.startsWith("video/")) {
eventType = "m.video" })
}
if (mimeType.startsWith("image/")) {
eventType = "m.image"
additionalPromise = riot.loadImageElement(upload.file)
.then((element) => {return elementToThumbnail(element)})
} else if (mimeType.startsWith("video/")) {
eventType = "m.video"
additionalPromise = riot.loadVideoElement(upload.file)
.then((element) => {return elementToThumbnail(element)})
}
// create and upload thumbnail
let thumbnailType = "image/png"
if (mimeType == "image/jpeg") {
thumbnailType = mimeType
}
} else if (mimeType.startsWith("audio/")) { } else if (mimeType.startsWith("audio/")) {
eventType = "m.audio" eventType = "m.audio"
} else { } else {

@ -14,7 +14,7 @@ limitations under the License.
const Promise = require('bluebird'); const Promise = require('bluebird');
const sanitize = require('sanitize-html'); const sanitize = require('sanitize-html');
require("blueimp-canvas-to-blob"); //require("blueimp-canvas-to-blob");
const COLOR_REGEX = /^#[0-9a-fA-F]{6}$/; const COLOR_REGEX = /^#[0-9a-fA-F]{6}$/;
/** /**
@ -117,6 +117,8 @@ module.exports = {
// Once ready, returns its size // Once ready, returns its size
// Wait until we have enough data to thumbnail the first frame. // Wait until we have enough data to thumbnail the first frame.
video.onloadeddata = function() { video.onloadeddata = function() {
video.width = video.videoWidth
video.height = video.videoHeight
resolve(video); resolve(video);
}; };
video.onerror = function(e) { video.onerror = function(e) {

Loading…
Cancel
Save