I'm trying to embed a video with the sound muted but I can not figure out how it make it work.
Currently I'm using this but doesn't work:
<iframe src="https://www.youtube.com/embed/uNRGWVJ10gQ?rel=0&autoplay=1" width="560" height="315" frameborder="0" allowfullscreen></iframe>
Any of you knows how can I make this work ?
Just pass
mute=1
.For example:
Take the source url, for example:
then add
?mute=1
to the end, so:There are additional player parameters in Google's documentation.
Try this
don't forget to write volume="0"
Source: https://developers.google.com/youtube/iframe_api_reference
The accepted answer was not working for me, I followed this tutorial instead with success.
Basically: