You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

67 lines
2.1 KiB

/**********************************************************************************
*
* Copyright (C) 2017 MuK IT GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
**********************************************************************************/
odoo.define('muk_preview_video.PreviewGenerator', function (require) {
"use strict";
var core = require('web.core');
var PreviewHandler = require('muk_preview.PreviewHandler');
var PreviewGenerator = require('muk_preview.PreviewGenerator');
var QWeb = core.qweb;
var _t = core._t;
var VideoHandler = PreviewHandler.extend({
mimetypeMap: {
'.mp4': 'video/mp4',
'.webm': 'video/webm',
'.ogg': 'video/ogg',
'mp4': 'video/mp4',
'webm': 'video/webm',
'ogg': 'video/ogg',
},
checkExtension: function(extension) {
return ['.mp4', '.webm', '.ogg', 'mp4', 'webm', 'ogg'].includes(extension);
},
checkType: function(mimetype) {
return ['video/mp4', ' video/webm', 'video/ogg'].includes(mimetype);
},
createHtml: function(url, mimetype, extension, title) {
var result = $.Deferred();
if(!mimetype) {
mimetype = this.mimetypeMap[extension];
}
var $content = $(QWeb.render('VideoHTMLContent', {url: url, type: mimetype}));
result.resolve($content);
return $.when(result);
},
});
PreviewGenerator.include({
videoHandler: {
"VideoHandler": new VideoHandler(),
},
init: function(additional_handler) {
additional_handler = _.extend(this.videoHandler, additional_handler);
this._super(additional_handler);
},
});
});