|
1、先依照帖子 http://www.discuz.net/thread-2487833-1-1.html 更改
2、source/function/function_discuzcode.php
case 'mpeg' 下面添加case 'mp4'
---------
case 'mpeg':
case 'mp4':
return '<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="'.$width.'" height="'.$height.'"><param name="invokeURLs" value="0"><param name="autostart" value="0" /><param name="url" value="'.$url.'" /><embed src="'.$url.'" autostart="0" type="application/x-mplayer2" width="'.$width.'" height="'.$height.'"></embed></object>';
case 'mov':
3、static/js/editor.js
'swf'之后 添加 'mp4'
---------
ext = in_array(ext, ['mp3', 'wma', 'ra', 'rm', 'ram', 'mid', 'asx', 'wmv', 'avi', 'mpg', 'mpeg', 'rmvb', 'asf', 'mov', 'flv', 'swf','mp4'])
4、source/function/function_post.php
case 'mpeg' 下面添加case 'mp4'
---------
case 'mpeg':
case 'mp4':
5、 source/function/function_attachment.php
|mpeg 后面 添加 |mp4
------------
} elseif(preg_match("/audio|video|^(wav|mid|mp3|m3u|wma|asf|asx|vqf|mpg|mpeg|mp4|avi|wmv)\t/", $type)) {
|
|