KindEditor上传视频
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KindEditor上传视频相关的知识,希望对你有一定的参考价值。
1,打开plugins\media下面的media.js,打开,找到下面的代码:
var html = K.mediaImg(self.themesPath + ‘common/blank.gif‘, { src : url, type : K.mediaType(url), width : width, height : height, autostart : autostartBox[0].checked ? ‘true‘ : ‘false‘, loop : ‘true‘ }); 修改为: if (url.slice(-4).toUpperCase() == ‘.FLV‘) { var html = K.mediaImg(self.themesPath + ‘common/blank.gif‘, { src : ‘../KindEditor/files/flvplayer.swf‘, type : K.mediaType(url), flashvars : ‘file=‘+ url +‘&autostart=‘+ (autostartBox[0].checked ? ‘true‘ : ‘false‘) +‘‘, width : width, height : height, quality : ‘high‘, allowfullscreen : ‘true‘, loop : ‘true‘ }); }else{ var html = K.mediaImg(self.themesPath + ‘common/blank.gif‘, { src : url, type : K.mediaType(url), width : width, height : height, autostart : autostartBox[0].checked ? ‘true‘ : ‘false‘, loop : ‘true‘ }); }
然后在KindEditor下面建一个files文件夹,把flvplayer.swf拷贝进去,就OK
注意,要设置编辑器为 filterMode : false
以上是关于KindEditor上传视频的主要内容,如果未能解决你的问题,请参考以下文章