How to autoplay HTML5 mp4 video on Android?

后端 未结 15 1081
一向
一向 2020-11-27 05:53

I had developed a mobile page by asp.net to play mp4 video.

I know iOS had disabled the autoplay function to minimize user bandwidth, so how can i autoplay HTML5 mp

15条回答
  •  天命终不由人
    2020-11-27 06:07

    In Android 4.1 and 4.2, I use the following code.

        evt.initMouseEvent( "click", true,true,window,0,0,0,0,0,false,false,false,false,0, true );
        var v = document.getElementById("video");
        v.dispatchEvent(evt);
    

    where html is

        
    

    This works well. But In Android 4.4, it does not work.

提交回复
热议问题