上传的视频文件在内容模板里加了代码,怎么还是显示不了?
[#if pagination.firstPage]
[/#if]
[#if content.mediaPath?? && content.mediaType??]
<p style="text-align:center; margin:5px auto">
[#if content.mediaType=='FLV']
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="400" height="300">
<param name="movie" value="http://www.cnzz.cc/Flv/Flvplayer.swf" />
<param name="quality" value="high" />
<param name="allowFullScreen" value="true" />
<param name="FlashVars" value="vcastr_file=${content.mediaPath!}&BufferTime=3" />
<embed src="/${res}/img/flvplayer.swf" allowfullscreen="true" flashvars="vcastr_file=${content.mediaPath!}" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="400" height="300"></embed>
</object>
[#elseif content.mediaType=='FLASH']
<embed width="400" height="300" align="center" src="${content.mediaPath}" type="application/x-shockwave-flash" wmode="transparent" quality="high"></embed>
[#else]
<embed autostart="true" src="${content.mediaPath}" type="video/x-ms-wmv" width="400" height="300" controls="ImageWindow" console="cons">
</embed>
[/#if]
|
|