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.

75 lines
2.5 KiB

  1. /**********************************************************************************
  2. *
  3. * Copyright (C) 2017 MuK IT GmbH
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. **********************************************************************************/
  19. odoo.define('muk_preview_markdown.PreviewContentAudio', function (require) {
  20. "use strict";
  21. var core = require('web.core');
  22. var ajax = require('web.ajax');
  23. var utils = require('web.utils');
  24. var session = require('web.session');
  25. var registry = require('muk_preview.registry');
  26. var AbstractPreviewContent = require('muk_preview.AbstractPreviewContent');
  27. var QWeb = core.qweb;
  28. var _t = core._t;
  29. var PreviewContentAudio = AbstractPreviewContent.extend({
  30. template: "muk_preview.PreviewContentAudio",
  31. jsLibs: [
  32. '/muk_web_preview_audio/static/lib/visualizer/visualizer.js',
  33. ],
  34. mimetypeMap: {
  35. '.wav': 'audio/wav', '.ogg': 'audio/ogg', '.mp3': 'audio/mpeg',
  36. 'wav': 'audio/wav', 'ogg': 'audio/ogg', 'mp3': 'audio/mpeg',
  37. },
  38. init: function(parent, url, mimetype, filename) {
  39. this._super.apply(this, arguments);
  40. if(this.mimetype === 'application/octet-stream') {
  41. var extension = this.filename.split('.').pop();
  42. this.mimetype = this.mimetypeMap[extension];
  43. }
  44. },
  45. renderPreviewContent: function() {
  46. this.visualizer = new Visualizer(
  47. this.$('audio'),
  48. this.$('.visualizer'),
  49. this.$('canvas')
  50. );
  51. return this._super.apply(this, arguments);
  52. },
  53. downloadable: true,
  54. printable: false,
  55. });
  56. _.each(['.wav', '.ogg', '.mp3', ], function(extension) {
  57. registry.add(extension, PreviewContentAudio);
  58. });
  59. _.each(['wav', 'ogg', 'mp3'], function(extension) {
  60. registry.add(extension, PreviewContentAudio);
  61. });
  62. _.each(['audio/wav', ' audio/ogg', 'audio/mpeg'], function(mimetype) {
  63. registry.add(mimetype, PreviewContentAudio);
  64. });
  65. return PreviewContentAudio;
  66. });