I'm using Rails video_tag to render a video as so:
= video_tag("SMR_video.mp4", :controls => false, :autobuffer => true, :autoplay => true, :loop => true, :id => "hero-video")
This results in the following, the video doesn't loop:
<video autobuffer="autobuffer" autoplay="autoplay" id="hero-video" loop="loop" src="/assets/SMR_video.mp4"></video>
Where am I going wrong here?
Thanks