码迷,mamicode.com
首页 > Web开发 > 详细

KindEditor上传视频

时间:2016-01-28 02:01:47      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:

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上传视频

标签:

原文地址:http://www.cnblogs.com/mfc-itblog/p/5165044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!