Hi Henrik Reer,
To resolve the issue where videos from Azure Video Indexer autoplay muted, follow these steps.
Modify the Embed Code: Add autoplay=true&muted=true to the video embed URL, like this:
html
Copy
<iframe width="560" height="315"
src="https://www.videoindexer.ai/embed/player/{accountId}/{videoId}?autoplay=true&muted=true"
frameborder="0" allowfullscreen>
</iframe>
Replace {accountId} and {videoId} with the actual Account ID and Video ID.
Ensure you test the video in different browsers (e.g., Chrome, Firefox, Safari) since autoplay with sound is restricted by browser policies.
This should allow the video to autoplay with muted sound, similar to services like Wistia and Vimeo.
I hope these helps you. Thank you!