HTML

Embedding a video with HTML is a fairly straightforward process:

This is the easiest method. The video ID will be static in the embedding URL, therefore you will have to embed each video separately on your website.

<iframe width="512" height="288" 
    src="https://embed.videodocker.io/videos/59efa5f5944434081cbab3c5?APIKey=YOUR-PUBLIC-APIKEY" 
    style="position:absolute; top:0px; right:0px; bottom:0px; left:0px; width:100%; height:100%"
    frameborder="0" 
    allowfullscreen>
</iframe>

For a minimum/maximum video size, add another wrapper around the example code above:

<div style="min-width:256px; width:100%; max-width:1920px; height:auto;">
â‹®
</div>

Last updated

Was this helpful?