“https://s3.us-east-2.amazonaws.com/--videos/************.mp4”。 这是一个 s3 视频网址,我无法在 html5 视频标签或我的 Angular 项目中的其他第三方视频播放器中播放。是否需要执行任何 Mime 类型或配置才能播放视频?Mime 类型 I尝试使用 is type = video/mp4。
你试过这个吗?
<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>
这段代码运行良好:
<video width="400" controls> <source src="https://xxxxx.s3.us-east-2.amazonaws.com/bear.mp4" type="video/mp4"> </video>