在KindEditor中編輯可上傳MP4
mp4視訊格式上傳:
找到 kindeditor-all.js
- 在 htmlTags 配置中新增:
video : [‘id’, ‘class’, ‘src’, ‘width’, ‘height’, ‘type’, ‘loop’, ‘autostart’, ‘quality’, ‘.width’,
‘.height’, ‘align’, ‘allowscriptaccess’,‘controls’],
這是配置白名單, 為了防止kindeditor編輯器無法識別video標籤.
- 修改 _mediaImg()方法
原始碼
function _mediaImg(blankPath, attrs) {
var width = attrs.width,
height = attrs.height,
type = attrs.type || _mediaType(attrs.src),
srcTag = _mediaEmbed(attrs),
style = ‘’;
if (/\D/.test(width)) {
style += ‘width:’ + width + ‘;’;
} else if (width > 0) {
style += ‘width:’ + width + ‘px;’;
}
if (/\D/.test(height)) {
style += ‘height:’ + height + ‘;’;
} else if (height > 0) {
style += ‘height:’ + height + ‘px;’;
}
var html = ‘<img class="’ + _mediaClass(type) + ‘" src="’ + blankPath + '" ';
if (style !== ‘’) {
html += ‘style="’ + style + '" ';
}
html += ‘data-ke-tag="’ + escape(srcTag) + ‘" alt="" />’;
return html;
}
修改為,程式碼塊部分為修改的程式碼
function _mediaImg(blankPath, attrs) {
var width = attrs.width,
height = attrs.height,
type = attrs.type || _mediaType(attrs.src),
srcTag = _mediaEmbed(attrs),
style = ‘’;
if (/\D/.test(width)) {
style += ‘width:’ + width + ‘;’;
} else if (width > 0) {
style += ‘width:’ + width + ‘px;’;
}
if (/\D/.test(height)) {
style += ‘height:’ + height + ‘;’;
} else if (height > 0) {
style += ‘height:’ + height + ‘px;’;
}
if (attrs.src.indexOf(".mp4")!=-1) {
var html = '<video src="'+attrs.src+'" controls="controls" width="'+width+'" height="'+height+'" class="' + _mediaClass(type) + '" type="video/mp4" ';
html += '>您的瀏覽器太老了, 不支援視訊播放。請下載最新瀏覽器!</video>'
return html;
}else{
var html = '<img class="' + _mediaClass(type) + '" src="' + blankPath + '" ';
if (style !== '') {
html += 'style="' + style + '" ';
}
html += 'data-ke-tag="' + escape(srcTag) + '" alt="" />';
}
return html;
}
attrs.src.indexOf(".mp4")!=-1 如果是mp4格式視訊,就將標籤替換成標籤,這樣才能播放
如果修改到這裡的話, 會出現編輯器無法編輯, 上傳後的視訊無法刪除.
這裡拼接video視訊地址的時候, 要加入編輯器識別標籤
:
var html = '<p></p><p><video src="'+attrs.src+'" controls="controls" width="'+width+'" height="'+height+'" class="' + _mediaClass(type) + '" type="video/mp4" ';
html += '>您的瀏覽器太老了, 不支援視訊播放。請下載最新瀏覽器!</video></p><p></p>'
相關文章
- js 操作kindeditor編輯器JS
- 織夢kindeditor編輯器圖片上傳增加圖片alt屬性和title屬性的方法
- 預設後臺Kindeditor編輯器在ie11下,彈出層js有問題,點上傳圖片後,圖片上傳彈出層不出現IE11JS
- [BUG反饋]Kindeditor編輯器在IE11下點上傳圖片後,圖片上傳彈出層不出現,建議官網更新新版本IE11
- Angular在sublime編輯器中如何新增註釋???Angular
- 採用Kindeditor編輯器時,提交、修改無法入庫的原因和解決辦法
- 在vim中顯示並編輯十六進位制
- Laravel 5-KindEditor 一款值得推薦的最具情懷的 HTML 文字編輯器LaravelHTML
- kindeditor 上傳圖片 自動調整尺寸大小
- Linux中編輯影片字幕Linux
- js input 不可編輯可傳值設定JS
- [提問交流]onethink中kindeditor問題
- DbForge Studio for SQL Server入門教程:在表編輯器中建立表SQLServer
- C# / VB.NET 在PPT中建立、編輯PPT SmartArt圖形C#
- React 中整合 Markdown編輯器React
- 如何在 Linux 中編輯字幕Linux
- 檔案上傳之解析漏洞編輯器安全
- 編譯並裁剪 FFmpeg 在 Android 上做視訊編輯編譯Android
- 在 Fedora 上使用 GIMP 輕鬆編輯影像
- 在VueJS中使用 froala 富文字編輯器VueJS
- 在 Fedora 上使用 GIMP 輕鬆編輯影象
- 如何在模板中編輯修改文字
- onethink,怎麼delete編輯器上傳的圖片delete
- 編輯功能-載荷裡空欄位沒有傳
- 編輯
- 在 Linux 下截圖並編輯的最佳工具Linux
- 文案編輯在創作時要了解什麼?
- 在Docker容器內執行 vi 編輯器 | BaeldungDocker
- Linux系統中的Vim編輯器Linux
- Shift+Click,編輯[...],如編輯圖片
- 增強 Vim 編輯器,提高編輯效率
- nGrinder中快速編寫groovy指令碼03-在GET請求中傳送引數指令碼
- PbootCMS百度編輯器ueditor在PHP7下多圖上傳名字重複問題bootPHP
- KindEditor 圖片上傳後生成帶域名絕對路徑配置方法
- 編輯了
- 文件編輯
- 微信JSSDK上傳圖片過程中編輯圖片描述,解決思路記錄JS
- 在 Ember 專案中使用ESLint (VScode編輯器下)EsLintVSCode