视频无法在Chrome和Opera中播放 - Asp.net

时间:2016-07-26 16:03:16

标签: asp.net html5 google-chrome video

我想要显示三个.mp4视频。 视频相同,但长度和大小不同。 1mb视频在所有浏览器中播放,没问题。 5mb和10mb视频仅在IE和Edge中播放。 这些视频位于我项目的内容文件夹中,我的代码是:

        <div class="col-md-4" style="text-align:center">
        <h4>Create your Asset Hierarchy</h4>
        <video width="320" height="240" controls preload="auto" poster="~/Content/theme/images/logo_sistrade_blue.gif">
            <source src="~/Content/theme/videos/videoTesteMp45mb.mp4" type="video/mp4">
            Your browser does not support the video tag.
        </video>
    </div>
    <div class="col-md-4" style="text-align:center">
        <h4>Build your Equipment tree</h4>
        <video width="320" height="240" controls preload="auto" poster="~/Content/theme/images/logo_sistrade_blue.gif">
            <source src="~/Content/theme/videos/videoTesteMp410mb.mp4" type='video/mp4'>
            Your browser does not support the video tag.
        </video>
    </div>
    <div class="col-md-4" style="text-align:center">
        <h4>Perform Maintenance</h4>
        <video width="320" height="240" controls preload="auto" poster="~/Content/theme/images/logo_sistrade_blue.gif">
            <source src="~/Content/theme/videos/videoTesteMp4.mp4" type="video/mp4">
            Your browser does not support the video tag.
        </video>
    </div>

我不知道为什么这不起作用。我尝试将类型更改为video/webmvideo/ogg,但仍无效。

提前谢谢。

0 个答案:

没有答案