How to autoplay on video in mobile chrome version

0

I am trying to start the video in autoplay in the mobile version in the mobile test in firefox and it worked in chrome, it does not follow the code of the video tag that I am using

<video class="video" autoplay muted loop >

If anyone has any ideas, thank you

    
asked by anonymous 23.11.2017 / 17:27

1 answer

2

Browsers have their auto-execute content tag with the <video> tag using mobile. IOS, for example, does not allow autoplay ( see here official Apple documentation ).

Regarding Android, Firefox accepts autoplay , quiet. Chrome will only auto-execute the video if it has the two attributes autoplay muted ( muted means no audio ) and if Data Saver is disabled and if " Site Settings> Media " is enabled in the browser settings "AutoPlay".

I believe that in the case of iOS (which does not allow) and in the case of Chrome (allows within the above criteria), either to avoid consumption of cellular network data without a prior action of the user.     

23.11.2017 / 18:24