How to autoplay a video as soon as page loads(not youtube video) and loop it infinitely in HTML while using FLASK?
How to autoplay a video as soon as page loads(not youtube video) and loop it infinitely in HTML while using FLASK?
You can use this. Add muted property to autoplay <video src="test.mp4" width="30%" height="20%" controls autoplay **muted** loop></video>
Flask
{% block content %}
<video src="test.mp4" width="30%" height="20%" controls autoplay **muted** loop></video>
{% endblock %}