From b7e64689d02f6ca88705ba6f53c3b72fe5d13d90 Mon Sep 17 00:00:00 2001 From: Sven Decabooter <sdecabooter@gmail.com> Date: Fri, 28 Jun 2024 12:08:32 +0200 Subject: [PATCH] Issue #2927116 by ravi kant, Jay Jangid: Autoplay doesn't work --- templates/video-embed-html5.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/video-embed-html5.html.twig b/templates/video-embed-html5.html.twig index 3c5ae97..d9ce800 100644 --- a/templates/video-embed-html5.html.twig +++ b/templates/video-embed-html5.html.twig @@ -1,3 +1,3 @@ -<video controls {{ autoplay ? 'autoplay' : '' }} width="100%"> +<video controls {{ autoplay ? 'muted autoplay' : '' }} width="100%"> <source src="{{ src }}" type="{{ type }}"/> </video> -- GitLab