Have a Vimeo Video Autoplay, Muted, and Closed Captioned

When embedding a video on a page for marketing purposes (where someone might not expect to see your page, especially), it’s nice to have autoplay on, mute on, and captions on so that people don’t have the audio blasting at them but can still see the video and see the text for the video.

Here are the toggles for it:

  • autoplay=1
  • muted=1
  • texttrack=en-US
  • loop=1 (for looping)

You’ll add this to your embed code using an ampersand before each one.

Here’s an example showing it to you:

<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/419082799?autoplay=1&loop=1&title=0&byline=0&portrait=0&muted=1&texttrack=en-US" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>

Or, here’s the embed code for autoplay on, looping on, title off, byline off, muted on, and closed captioning on:

autoplay=1&loop=1&title=0&byline=0&muted=1&texttrack=en-US

Enjoy!

LEAVE A REPLY

Please enter your comment!
Please enter your name here