如何使用嵌入标签将自动播放设置为 vimeo 视频?

How can I set autoplay to a vimeo video using embed tag?

我的 html 文件中有以下嵌入标签

    <embed src='{{"https://player.vimeo.com/video/{$videouri}?autoplay=true"}}'width="300" height="361" /> 

我在使用“?autoplay=true”和“.play”时遇到了一些问题(javascript)。他们只是不会为我工作。 关于如何使其工作的任何想法?

如果我查看官方 Vimeo 文档,会弹出:

<iframe src="https://player.vimeo.com/video/{{ $videouri }}?autoplay=true" width="300" height="361" frameborder="0" allow="autoplay"></iframe>

看起来你必须添加以下内容:

  • ?autoplay=1 添加到 url(你已经做了)
  • allow="autoplay" 添加到 iframe 元素

不确定这是否也适用于 <embed> 元素。

side-note: If you use Laravel Blade you just can leave the url normal and add {{ $videouri }} to the url instead of double quoting the url and variable.