如何在使用嵌入标签时消除缺少插件错误

发布于 2024-10-11 18:30:03 字数 56 浏览 1 评论 0原文

由于我在 html 文件中使用嵌入标签,但在浏览器中它显示缺少插件。要解决这个插件问题我该怎么办?

As I am using embed tag in my html file but in browser it is showing missing plugin. To solve this plugin problem what can I do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

未蓝澄海的烟 2024-10-18 18:30:03

要播放 html 格式的 FLV,您应该使用该标签。例如:

<object type="application/x-shockwave-flash" 
width="320" height="240" 
wmode="transparent" 
data="player.swf?file=video.flv&autoStart=false">
<param name="movie" 
value="player.swf?file=video.flv&autoStart=false"/>
<param name="wmode" value="transparent"/>
</object>

Player.swf 是播放器swf 文件,filename 是文件属性。

For playing FLV in html, you should use the tag. For example:

<object type="application/x-shockwave-flash" 
width="320" height="240" 
wmode="transparent" 
data="player.swf?file=video.flv&autoStart=false">
<param name="movie" 
value="player.swf?file=video.flv&autoStart=false"/>
<param name="wmode" value="transparent"/>
</object>

Player.swf is player swf file and filename is the file attribute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文