1. 程式人生 > >editor上傳視訊無法播放的問題

editor上傳視訊無法播放的問題

1、首先確定伺服器有沒有裝flash外掛,我以前就被這個坑死

2、第二個坑是,ueditor會遮蔽播放器外掛程式碼,上傳了之後會發現編輯器裡依舊空白,在editor.config.js里加入白名單


在這個後面直接加下面一段程式碼,你可以先只改這個其他先不改看看有沒有效果(網上一搜看到改了很多地方,我是本地上傳的,那些是加連結的)

video:  ['autoplay', 'controls', 'loop', 'preload', 'src', 'height', 'width', 'class', 'style'],
source: ['src', 'type'],  
embed: ['type', 'class', 'pluginspage', 'src', 'width', 'height', 'align', 'style', 'wmode', 'play','autoplay','loop', 'menu', 'allowscriptaccess', 'allowfullscreen', 'controls', 'preload'],  
iframe: ['src', 'class', 'height', 'width', 'max-width', 'max-height', 'align', 'frameborder', 'allowfullscreen']  

3、還有一個坑是,我的視訊是wmv轉的mp4,用的格式工廠轉的,注意轉的時候要改編碼H264(我原先沒有改結果播不出來,我還一直改配置檔案)


就先分享遇到的這些坑,希望對一些人有幫助