Fckeditor插入视频或视频文件
生活随笔
收集整理的這篇文章主要介紹了
Fckeditor插入视频或视频文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
一、分別打開:editor/js/fckeditorcode_ie_1.js和/editor/js/fckeditorcode_gecko_1.js
找到
程序代碼
C.src.endsWith('.swf',true)
替換為:
程序代碼
C.src.endsWith('.swf',true)?||?C.src.endsWith('.mpg',true)?||?C.src.endsWith('.asf',true)?||?C.src.endsWith('.wma',true)?||?C.src.endsWith('.wmv',true)?||?C.src.endsWith('.avi',true)?||?C.src.endsWith('.mov',true)?||?C.src.endsWith('.mp3',true)?||?C.src.endsWith('.rm',true)?||?C.src.endsWith('.ra',true)?||?C.src.endsWith('.rmvb',true)?||?C.src.endsWith('.mid',true)?||?C.src.endsWith('.ram',true)
文件格式你根據實際情況增加。
二、打開/editor/dialog/fck_flash/fck_flash.js
1、增加
程序代碼
function?WinPlayer(url){
????var?r,?re;
????re?=?/.(avi|wmv|asf|wma|mid|mp3|mpg)$/i;
????r?=?url.match(re);
????return?r;
}
function?RealPlayer(url){
????var?r,?re;
????re?=?/.(.rm|.ra|.rmvb|ram)$/i;
????r?=?url.match(re);
????return?r;
}
function?QuickTime(url){
????var?r,?re;
????re?=?/.(mov|qt)$/i;
????r?=?url.match(re);
????return?r;
}
function?FlashPlayer(url){
????var?r,?re;
????re?=?/.swf$/i;
????r?=?url.match(re);
????return?r;
}
2、替換
程序代碼
e.type?=?'application/x-shockwave-flash'?;
為
程序代碼
if(WinPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-mplayer2'?;
}
if(RealPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'audio/x-pn-realaudio-plugin'?;
}
if(QuickTime(GetE('txtUrl').value)!=null){
????e.type?=?'video/quicktime'?;
}
if(FlashPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-shockwave-flash'?;
????e.pluginspage?=?'http://www.macromedia.com/go/getflashplayer'?;
}
3、替換
程序代碼
SetAttribute(?e,?'type',?'application/x-shockwave-flash'?)?;
SetAttribute(?e,?'pluginspage'????,?'http://www.macromedia.com/go/getflashplayer'?)?;
為
程序代碼
if(WinPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-mplayer2'?;
????SetAttribute(?e,?'autostart',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}
if(RealPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'audio/x-pn-realaudio-plugin'?;
????SetAttribute(?e,?'autostart',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}
if(QuickTime(GetE('txtUrl').value)!=null){
????e.type?=?'video/quicktime'?;
????SetAttribute(?e,?'autostart',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}
if(FlashPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-shockwave-flash'?;
????SetAttribute(?e,?'scale',?GetE('cmbScale').value?)?;
????SetAttribute(?e,?'menu',?GetE('chkMenu').checked???'true'?:?'false'?);
????SetAttribute(?e,?'play',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}?
找到
程序代碼
C.src.endsWith('.swf',true)
替換為:
程序代碼
C.src.endsWith('.swf',true)?||?C.src.endsWith('.mpg',true)?||?C.src.endsWith('.asf',true)?||?C.src.endsWith('.wma',true)?||?C.src.endsWith('.wmv',true)?||?C.src.endsWith('.avi',true)?||?C.src.endsWith('.mov',true)?||?C.src.endsWith('.mp3',true)?||?C.src.endsWith('.rm',true)?||?C.src.endsWith('.ra',true)?||?C.src.endsWith('.rmvb',true)?||?C.src.endsWith('.mid',true)?||?C.src.endsWith('.ram',true)
文件格式你根據實際情況增加。
二、打開/editor/dialog/fck_flash/fck_flash.js
1、增加
程序代碼
function?WinPlayer(url){
????var?r,?re;
????re?=?/.(avi|wmv|asf|wma|mid|mp3|mpg)$/i;
????r?=?url.match(re);
????return?r;
}
function?RealPlayer(url){
????var?r,?re;
????re?=?/.(.rm|.ra|.rmvb|ram)$/i;
????r?=?url.match(re);
????return?r;
}
function?QuickTime(url){
????var?r,?re;
????re?=?/.(mov|qt)$/i;
????r?=?url.match(re);
????return?r;
}
function?FlashPlayer(url){
????var?r,?re;
????re?=?/.swf$/i;
????r?=?url.match(re);
????return?r;
}
2、替換
程序代碼
e.type?=?'application/x-shockwave-flash'?;
為
程序代碼
if(WinPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-mplayer2'?;
}
if(RealPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'audio/x-pn-realaudio-plugin'?;
}
if(QuickTime(GetE('txtUrl').value)!=null){
????e.type?=?'video/quicktime'?;
}
if(FlashPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-shockwave-flash'?;
????e.pluginspage?=?'http://www.macromedia.com/go/getflashplayer'?;
}
3、替換
程序代碼
SetAttribute(?e,?'type',?'application/x-shockwave-flash'?)?;
SetAttribute(?e,?'pluginspage'????,?'http://www.macromedia.com/go/getflashplayer'?)?;
為
程序代碼
if(WinPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-mplayer2'?;
????SetAttribute(?e,?'autostart',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}
if(RealPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'audio/x-pn-realaudio-plugin'?;
????SetAttribute(?e,?'autostart',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}
if(QuickTime(GetE('txtUrl').value)!=null){
????e.type?=?'video/quicktime'?;
????SetAttribute(?e,?'autostart',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}
if(FlashPlayer(GetE('txtUrl').value)!=null){
????e.type?=?'application/x-shockwave-flash'?;
????SetAttribute(?e,?'scale',?GetE('cmbScale').value?)?;
????SetAttribute(?e,?'menu',?GetE('chkMenu').checked???'true'?:?'false'?);
????SetAttribute(?e,?'play',?GetE('chkAutoPlay').checked???'true'?:?'false'?)?;
}?
轉載于:https://www.cnblogs.com/Athrun/archive/2008/01/10/1032827.html
總結
以上是生活随笔為你收集整理的Fckeditor插入视频或视频文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C#3.0 为我们带来什么(2) ——
- 下一篇: .Net中url传递中文的解决方案