火狐(firefox)不能播放flv

火狐(firefox)不能播放flv问题

 

选择一个flash播放器,player_flv_maxi_1.6.0.swf,player_flv_multi_1.5.0.swf都可以。可以去网上下载

 

asp代码如下:

‘---------------------------------------------------------------

sub ShowUserVideo(v_width,v_height)
              
                Response.Write "<object type=""application/x-shockwave-flash""  data=""../images/player_flv_maxi_1.6.0.swf""  width="""&v_width&""" height="""&v_height&""">" & vbcrlf
                Response.Write "<param name=""movie"" value=""../images/player_flv_maxi_1.6.0.swf"">" & vbcrlf
           
                Response.Write "<param name=""allowFullScreen"" value=""true"" />" & vbcrlf
                Response.Write "<param name=""FlashVars"" value=""flv=../"&rso("VideoUrl")&""" width="""&v_width&""" height="""&v_height&""" />" & vbcrlf
               
               
               
                Response.Write "</object>" & vbcrlf           
end sub
’-------------------------------------------------------------------

注:rso("VideoUrl")为文件路径,此处是从数据库中获取的记录集字段值。

 

在html网页中,

<div><%call ShowUserVideo(367,265)%></div>

即可播放。

你可能感兴趣的:(数据库,object,Flash,asp,firefox,flv)