我在matlab中使用uihtml来播放视频,我可以在uifig中嵌入视频,但当我按下播放按钮时它就会播放。有没有一种方法可以在matlab中用uihtml自动播放视频?我当前的HTML脚本如下:
<!DOCTYPE html>
<html>
<body style="background-color:black;font-family:arial;">
<video width="583" height="325" controls autoplay>
<source src="./movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
</html>
找到了一个解决方案,应该添加"静音"和自动播放,以便在matlab 中的uihtml中启用自动播放
<!DOCTYPE html>
<html>
<body style="background-color:black;font-family:arial;">
<video width="583" height="325" autoplay muted loop>
<source src="./movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
</html>