Skip to main content

Getting started

Minimal embed with default controls.

video

Preview

Props & interactive options

PropTypeDefaultDescriptionTry it
auto_playurl paramoffStart playback automatically.
mutedurl paramoffStart muted (required for autoplay).
loopurl paramoffLoop playback.

Documentation

The simplest way to embed the Videas video player on your site. This demo shows the default configuration with autoplay, muted start, and standard controls.

Code

HTML
<div style="padding:56.25% 0 0 0;position:relative;">
  <iframe
    src="https://app.videas.com/embed/019dcf5b-0c22-731c-8e3c-d24264812bd5/?show_chapters=0"
    width="100%" height="100%"
    frameborder="0" allowfullscreen
    allow="autoplay; fullscreen; picture-in-picture"
    style="position:absolute;top:0;left:0"
  ></iframe>
</div>

Frequently asked questions

Why does autoplay only work when muted is also enabled?

Modern browsers (Chrome, Safari, Firefox) block autoplay with sound to protect users from intrusive media. Combining <code>auto_play=1</code> with <code>muted=1</code> satisfies this policy and guarantees the player starts on every device. The viewer can unmute manually once playback begins.

Where do I find the embed URL for one of my videos?

In the Videas dashboard, open the video you want to embed, click the <strong>Share</strong> tab, then copy the iframe code under "Embed". You can append any of the URL parameters listed in the API reference to fine-tune behaviour.

Can I combine autoplay, muted and loop for a background banner?

Yes. Setting <code>auto_play=1&amp;muted=1&amp;loop=1</code> is the typical recipe for a silent looping hero video. Pair it with <code>controls=0</code> if you want to hide the control bar for a pure-visual effect.