在Windows XP中通过嵌入标签播放视频
在 src
中通过嵌入标签播放视频时,mp4 和 swf 文件可以正常工作,但播放 flv 在我的 Windows XP 系统上的任何浏览器中都无法正常工作。我该如何修复它?
<embed src="videoplayback.flv" bgcolor="#000"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
name="mainflash1" autostart="false" loop="false" height="450" width="450" allowscriptaccess="samedomain"
>
<noembed>Sorry, your browser doesn't support the embedding of multimedia.</noembed>
</embed>
While playing video by embed tag in src
, mp4 and swf file are working but playing flv is not working in any browser on my Windows XP system. How can I fix it?
<embed src="videoplayback.flv" bgcolor="#000"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
name="mainflash1" autostart="false" loop="false" height="450" width="450" allowscriptaccess="samedomain"
>
<noembed>Sorry, your browser doesn't support the embedding of multimedia.</noembed>
</embed>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要播放 html 格式的 FLV,您应该使用
Player.swf 是播放器swf 文件,filename 是文件属性。
For playing FLV in html, you should use the
<object>
tag. For example:Player.swf is player swf file and filename is the file attribute.