我需要在所有浏览器上播放.mp4文件,我正在使用Spring-boot,html5和thymeleaf。当我在本地计算机上部署项目时,视频运行正常,但是当我尝试在Linux上的tomact服务器上部署.jar文件时,出现以下异常。
see error here
我已经交叉检查了要下载的视频的路径,但是当我尝试打开它时,出现一条消息“播放此电影需要未安装的mpeg-4 aac解码器插件”。我的代码如下:
<video id="jatan-video" class="video-function" width="100%" controls>
<source th:src="@{/images/videos/tom.mp4}" type="video/mp4"/>
</video>