Dumb code in iframe

1

Can someone please help me, I want to put this iframe on my site, but I want it to play mute , code to put inside iframe to make it mute?

Does anyone explain how I do it?

<iframe frameborder="0" width="320" height="180" src="//www.dailymotion.com/embed/video/IDVIDEO" allowfullscreen></iframe>
    
asked by anonymous 16.05.2017 / 15:32

1 answer

2

According to documentation , you can pass a parameter mute to it, where 0 is not mute and 1 is dumb:

<iframe frameborder="0" width="480" height="270"
src="//www.dailymotion.com/embed/video/IDVIDEO?mute=1"
allowfullscreen></iframe>
    
16.05.2017 / 15:39