媒体元素

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>媒体元素</title>
</head>
<body>
<!--音频和视频-->
<!--
controls="controls"显示播放条
autoplay="autoplay"设置自动播放,如果还是不能播放在src前加上muted
-->
<video muted src="../resources/video/111.mp4" controls="controls" autoplay="autoplay" ></video>
<br/>
<br/>
<audio src="../resources/video/2021.mp3" controls></audio>


</body>
</html>

问:视频无画面,有声音

答:MP4有3种编码,mpg4(xdiv),,mpg4(xvid),avc(h264),只有h264才是公认的MP4标准编码,此处的MP4不是h264,因此可以用格式工厂先转换再放上去

posted @ 2021-08-20 10:35  卡卡发  阅读(40)  评论(0)    收藏  举报