I am trying to embed a short video in a website.
I can either get it to autoplay or get it to have volume...but not both:
to autoplay:
<div style="position: relative; overflow: hidden; aspect-ratio: 1920/1080;">
<p><iframe id="vidFrame" style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0; margin: 0; overflow: hidden;" title="The Conclusion People" src="; allowfullscreen="allowfullscreen"></p>
<p></iframe></p>
</div>
to unmute:
<div style="position: relative; overflow: hidden; aspect-ratio: 1920/1080;">
<p><iframe id="vidFrame" style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0; margin: 0; overflow: hidden;" title="The Conclusion People" src="; allowfullscreen="allowfullscreen"></p>
<p></iframe></p>
</div>
I have tried several things including;
<div style="position: relative; overflow: hidden; aspect-ratio: 1920/1080;">
<p><iframe id="vidFrame" style="position: absolute; width: 100%; height: 100%; top: 0; left: 0; border: none; padding: 0; margin: 0; overflow: hidden;" title="The Conclusion People" src=";mute=0" allowfullscreen="allowfullscreen"></p>
<p></iframe></p>
</div>
can only get it to do either 1 or the other thing (not both).
Help!