Actions
Bug #96320
closedYouTube Autoplay is not working in Chrome
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Content Rendering
Target version:
-
Start date:
2021-12-10
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
Hi,
Chrome does not allow autoplay of YouTube videos if mute option is not set.
https://developer.chrome.com/blog/autoplay/
This can be fixed by providing the mute option if autoplay is set.
/sysext/core/Classes/Resource/Rendering/YouTubeRenderer.php
Line 149
Change:
if (!empty($options['autoplay'])) {
$urlParams[] = 'autoplay=1';
}
To:
if (!empty($options['autoplay'])) {
$urlParams[] = 'autoplay=1';
$urlParams[] = 'mute=1';
}
Thanks
Actions