将.mov文件添加到网页的正确方法是什么?
我只是将此功能添加到现有文件中,因此我无法将其转换为HTML5.该文件位于同一服务器上,大小约为1G.
客户也不想在主页上使用YouTube或Vimeo.
这是从我的 iPhone 8 复制的 MOV 视频文件 URL。
https://www.yangfamily.tw/attachments/IMG_3049.MOV
然后我尝试在Chrome上播放这个视频,html代码如下:
<video width="320" height="240" controls>
<source src="https://www.yangfamily.tw/attachments/IMG_3049.MOV">
Your browser does not support the video tag.
</video>
Run Code Online (Sandbox Code Playgroud)
好的,已经加载成功了。但没有显示框架,只显示控件。
It's indeed a video file, and I can play this video file and show the frames successfully on any other player. Why this MOV video file was read as an audio file in Google Chrome? (Chrome Version: 90.0.4430.93 64-bits)
Any idea?