We need option to mute videos so that autoplay works in safari
-
Safari won’t autoplay a video unless it is muted and we have no option to do that. Please can you add the option?
In the meantime, I have used the following filter function to add muted property to the video output.
function cms_video_filter( $output, $atts, $video, $post_id, $library ) {
$output = str_replace( ‘<video’, ‘<video muted’, $output );
return $output;
}add_filter( ‘wp_video_shortcode’, ‘cms_video_filter’, 20, 5 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘We need option to mute videos so that autoplay works in safari’ is closed to new replies.