html5 autoplay video in Mobile device

前端 未结 8 609
南方客
南方客 2020-12-06 00:45

Auto play is not working without muted attribute, when I try to open url in mobile device. How to play video without using muted attribute

相关标签:
8条回答
  • 2020-12-06 01:45
    <video autoplay="autoplay" loop="loop" muted defaultMuted playsinline  oncontextmenu="return false;"  preload="auto"  id="myVideo">
            <source src="assets/video/1.mp4" type="video/mp4">
            </video>
    

    This code worked for me on Ios and Android phone

    0 讨论(0)
  • 2020-12-06 01:45

    You Try this one link also they have provide more Information about Why The Change?:

    https://developers.google.com/web/updates/2016/07/autoplay

    0 讨论(0)
提交回复
热议问题