记录:
浏览器支持的视频和音频格式
<video controls="">
<source src="*.webm" type="video/webm">
<source src="*.mp4" type="video/mp4">
<!-- 向后兼容代码,还可以尝试添加flash -->
<iframe width="480" height="360" src="http://www.******" frameborder="0" allowfullscreen></iframe>
</video>

浏览器支持的视频和音频格式
<audio controls>
<source src="*.mp3" type='audio/mpeg; codecs="mp3"'>
<source src="*.oga" type='audio/ogg; codecs="vorbis"'>
<!-- 向后兼容代码 -->
浏览器不支持  <code>audio</code>标签
</audio>

相关文章:

  • 2022-12-23
  • 2021-12-06
  • 2021-05-09
  • 2022-12-23
  • 2021-11-17
  • 2021-09-01
  • 2021-04-24
  • 2022-12-23
猜你喜欢
  • 2021-08-26
  • 2021-12-05
  • 2021-04-21
  • 2022-03-14
  • 2022-12-23
  • 2021-04-08
相关资源
相似解决方案