将视频嵌入 SharePoint WebPart - 页面打开时不播放视频

Embed Video into SharePoint WebPart - Do not play video when page opens

我编写了以下内容 html 以将 Flash 视频嵌入到内容 Web 部件中:

<Embed src="RelativeUrlToFlahFile" TYPE="application/x-shockwave-flash" width="700" height="200"></Embed>

但是效果很好,因为我在 Web 部件中有几个视频,它们都同时开始播放。我希望视频在页面打开时不开始播放。

我试过添加

<embed...play="false"
<embed..autoplay="false"

但我的 none 个选项都有效。

谢谢。

尝试添加

autostart="false"

如果您使用 Chrome "Chrome doesn't seem to understand true and false. Use autostart="1" 和 autostart="0" 代替。"

来源:HTML embed autoplay="false", but still plays automatically