我正试图在我的网站上播放作为介绍背景的视频。我有我需要的所有属性,但我不知道如何将声音静音。想法吗?
// get iframe HTML
$iframe = get_field('slider_video');
// use preg_match to find iframe src
preg_match('/src="(.+?)"/', $iframe, $matches);
$src = $matches[1];
// add extra params to iframe src
$params = array(
'controls' => 0,
'hd' => 1,
'autohide' => 1,
'autoplay' => 1,
'showinfo' => 0
);
$new_src = add_query_arg($params, $src);
$iframe = str_replace($src, $new_src, $iframe);
// add extra attributes to iframe html
$attributes = 'frameborder="0"';
$iframe = str_replace('></iframe>', ' ' . $attributes . '></iframe>', $iframe);
// echo $iframe
echo $iframe;
?>
<?php endif; ?>
add
$params = array(
'muted' => 1,
);