不将图像显示为 HTML 视频的预览

Does not display the image as a preview of the HTML video

我已经在我的视频标签中插入了代码来显示带有图像的预览,但是没有显示,我不明白为什么。

这是代码:

<video preload="none" width="100%" height="100%" autobuffer="true" controls="true" poster="mypath">
    <source src="mypath" type="video/mp4">
</video>

这是我在 mozila firefox 中看到的内容:

我也试过 google chrome 问题还是一样,可能是什么问题?

尝试此代码并在 Firefox 中工作:

 <video  width="100%" height="100%" autobuffer="true" controls="true" poster="https://www.w3schools.com/images/picture.jpg">
       <source src="mypath" type="video/mp4">
 </video>