使用autoplay属性不行的话,尝试以下几种方法:

微信浏览器,利用微信的JSAPI的创建页面监听WeixinJSBridgeReady():

document.addEventListener('WeixinJSBridgeReady', function() { document.getElementById('video').play() })

添加 controls 属性,让用户手动播放。

添加触摸监听,当用户打开浏览出,触摸屏幕事件来监听播放

document.addEventLinstener('touchstart',function() {
    document.getEmlementById("video").play()
}, {once: true})