My video launches perfectly on windows but as soon as I play on an android smartphone the video is no longer read I saw that it was necessary to go through playsinline but it does not work thank you for your help
<script>
jQuery(document).ready(function($) {
var Video_back = new video_background($("#home"), {
"position": "absolute", //Follow page scroll
"z-index": "-1", //Behind everything
"loop": true, //Loop when it reaches the end
"autoplay": true, //Autoplay at start
"muted": true, //Muted at start
"mp4":"ionos/videos/logo.mp4" , //Path to video mp4 format
"video_ratio": 1.7778, // width/height -> If none provided sizing of the video is set to adjust
"fallback_image": "ionos/images/dummy.png", //Fallback image path
"priority": "html5" //Priority for html5 (if set to flash and tested locally will give a flash security error)
});
});
</script>