概述:

       百度Ueditor如果config.json中配置的文件管理中的'file'与'video'不是一个目录,那么就不能浏览已上传过的视频;根据文件管理的相关代码添加了浏览在线视频的功能。


1.修改config.json, 添加视频相关参数

"videoManagerActionName": "listvideo",
"videoManagerListPath": "static/upload/video/",
"videoManagerUrlPrefix": "http://127.0.0.1:5000/",
"videoManagerListSize": 20,
"videoManagerAllowFiles": [
    ".flv", ".swf", ".mkv", ".avi", ".rm", ".rmvb", ".mpeg", ".mpg",
    ".ogg", ".ogv", ".mov", ".wmv", ".mp4", ".webm", ".mp3", ".wav", ".mid"
]

2. 修改dialogs/video/video.css

#online {
    width: 100%;
    height: 336px;
    padding: 10px 0 0 0;
}
#online #videoList{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}
#online ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
#online li {
    float: left;
    display: block;
    list-style: none;
    padding: 0;
    width: 113px;
    height: 113px;
    margin: 0 0 9px 9px;
    *margin: 0 0 6px 6px;
    background-color: #eee;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
#online li.clearFloat {
    float: none;
    clear: both;
    display: block;
    width:0;
    height:0;
    margin: 0;
    padding: 0;
}
#online li img {
    cursor: pointer;
}
#online li div.file-wrapper {
    cursor: pointer;
    position: absolute;
    display: block;
    width: 111px;
    height: 111px;
    border: 1px solid #eee;
    background: url("./images/bg.png") repeat;
}
#online li div span.file-title{
    display: block;
    padding: 0 3px;
    margin: 3px 0 0 0;
    font-size: 12px;
    height: 13px;
    color: #555555;
    text-align: center;
    width: 107px;
    white-space: nowrap;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}
#online li .icon {
    cursor: pointer;
    width: 113px;
    height: 113px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border: 0;
    background-repeat: no-repeat;
}
#online li .icon:hover {
    width: 107px;
    height: 107px;
    border: 3px solid #1094fa;
}
#online li.selected .icon {
    background-image: url(images/success.png);
    background-image: url(images/success.gif) \9;
    background-position: 75px 75px;
}
#online li.selected .icon:hover {
    width: 107px;
    height: 107px;
    border: 3px solid #1094fa;
    background-position: 72px 72px;
}

#online .pagination {
    margin-bottom: 10px;
    margin-right: 10px;
    display: inline-block;
    float: right;
}

#online .pagebtn {
    display: inline;
    border-radius: 4px;
    padding: 2px;
    cursor: default;
    text-align: center;
    color: #495060;
    background: url("../image/images/bg.png") no-repeat 0 -30px;
}


3. 修改dialogs/video/video.html


    ...
    
        
    ...
   ...        ...