Доброго времени суток! Подскажите пожалуйста, как вывести видео (не YouTube), а свои с камеры на форум. Сейчас при прикреплении файла, его можно сначала скачать, а далее уже смотреть. Мне же необходимо, чтобы сразу была возможность просмотра.
Пользователи выкладывают часто видео с камер видеонаблюдения. И не хотят так заморачиваться с просмотром. Самостоятельно решения в яндексе не нашла:(
Совсем забыла указать, форум этот instantcms.ru/addons/forum-official.html
Версия cms 2.15.2
Так понимаю мне нужно вот это, но куда вставить не могу найти, все файлы просмотрела
/ / Customize the callback content of the file selector This method only triggers the button above the image button. file_picker_callback: function (callback, value, meta) { if (meta.filetype === 'file') { callback('https://www.baidu.com/img/bd_logo1.png', { text: 'My text' }); } if (meta.filetype === 'image') { callback('https://www.baidu.com/img/bd_logo1.png', { alt: 'My alt text' }); } // Mainly judge Media if (meta.filetype === 'media') { // Dynamically create upload input input, and simulate click upload operation to achieve local uploading video effects. let input = document.createElement('input');// Create a hidden input input.setAttribute('type', 'file'); input.setAttribute("accept", ".mp4"); let that = this; input.onchange = function(){ let file = this.files[0]; let fd = new FormData(); fd.append("file", file); _this.$axios.post("......", fd).then((res) => { let rr = res.data.data; // Callback callback The role is to display the URL of the selected video in the input box. callback(rr.filePath); }); } // Trigger Click input.click(); } },