如何在html视频标签中播放s3视频网址?

问题描述 投票:0回答:2

https://s3.us-east-2.amazonaws.com/--videos/************.mp4”。 这是一个 s3 视频网址,我无法在 html5 视频标签或我的 Angular 项目中的其他第三方视频播放器中播放。是否需要执行任何 Mime 类型或配置才能播放视频?Mime 类型 I尝试使用 is type = video/mp4。

html html5-video
2个回答
0
投票

你试过这个吗?

<video width="100" height="100" controls>
  <source src="random.mp4" type="video/mp4">
  <source src="random.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>


0
投票

这段代码运行良好:

<video width="400" controls>   <source src="https://xxxxx.s3.us-east-2.amazonaws.com/bear.mp4"  type="video/mp4"> </video>
© www.soinside.com 2019 - 2024. All rights reserved.