Video autoplay not working - Trying to find a fix Video autoplay not working - Trying to find a fix reactjs reactjs

Video autoplay not working - Trying to find a fix


Well in my case added muted property.

Try this:

<video ... autoPlay muted />

Chrome 66 stops autoplay of all video that don't have the muted property.

Hope it helps.


In my case the video in React did not play because I didn't capitalize autoplay. It has to be autoPlay.


Try this (it works): autoPlay={true}