Home > CMS Tutorial > DEDECMS > body text

How to play flv video in dedecms

Release: 2019-07-17 16:35:28
Original
3012 people have browsed it

How to play flv video in dedecms

DEDE does not support playing flv videos by default, so I had to find a solution by myself. After searching online, I found a solution.
Modification method:

1. Open /include/FCKeditor/editor/dialog/dede_media.htm

if(playtype=="rm"
|| (playtype=="-" && (rurl.indexOf('.rm')>0 || rurl.indexOf('.rmvb')>0 || rurl.indexOf('.ram')>0)) )
{
revalue = "rn";
}
Copy after login

Add the following content below:

//播放代码flv开始
else if(playtype=="flv" || (playtype=="-" && (rurl.indexOf('.flv')>0 || rurl.indexOf('.swf')>0)) )
{
revalue = "[flash=mp3][/flash]";//播放代码flv开始结束
}
Copy after login

2. Upload player.swf to the /plus directory and get

. When using it, directly use the "Insert Multimedia" function in Fckeditor and enter the video address and height and width at the end of flv.

For more technical articles related to DedeCMS, please visit the DedeCMS Tutorial column to learn!

The above is the detailed content of How to play flv video in dedecms. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template