Microsoft Edge 和 <VIDEO> [英] Microsoft Edge and <VIDEO>

查看:41
本文介绍了Microsoft Edge 和 <VIDEO>的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在网上到处找,试图解决这个问题.

I have looked everywhere online to try and solve this issue.

我的网站上有以下代码,它在除 Microsoft Edge 之外的所有浏览器上都可以正常工作,它只是说不支持该内容,因此它正在识别视频标签.

I have got the following code on my website which works fine on all browsers apart from Microsoft Edge, it simply says that the content is not supported, so it is recognising the video tag.

我正在播放 MP4 视频,编解码器:H.264、AAC

I'm displaying an MP4 video, codec: H.264, AAC

<video width="100%" controls id="slider-video">
              <!-- <source src="img-src/{v2_FOLDER}/theme/GMS_Final.webm" type="video/webm"> -->
              <source src="img-src/{v2_FOLDER}/theme/GMS_Final.mp4" type='video/mp4; codecs="avc1.64001E, mp4a.40.2"'>
              <p>Your browser does not support the video tag.</p>
            </video>

如您所见,我什至尝试过使用 webm 但这也不起作用……有什么想法吗?

As you can see, I have even tried using an webm but this also doesn't work... any ideas?

更新代码:

<video width="100%" controls id="slider-video">
              <source src="http://devsite6.clickserverdev.co.uk/img-src/_themev2-germanmotorspecialist-1131/theme/GMS_Final.webm" type="video/webm">
              <source src="http://devsite6.clickserverdev.co.uk/img-src/_themev2-germanmotorspecialist-1131/theme/GMS_Final.mp4" type="video/mp4">
              <source src="http://devsite6.clickserverdev.co.uk/img-src/_themev2-germanmotorspecialist-1131/theme/GMS_Final.m4v" type="video/m4v">
              <source src="http://devsite6.clickserverdev.co.uk/img-src/_themev2-germanmotorspecialist-1131/theme/GMS_Final.ogg" type="video/ogg">
            </video>

推荐答案

确保使用正确的 MP4 压缩和 H264 编解码器(最大 720p 分辨率)和 AC3 音频.Edge 就像 iPad/iPhone 上的浏览​​器一样,需要相同的 H264 压缩样式.

Make sure to use the correct MP4 compression with H264 codec (maximum 720p of resolution) with AC3 audio on it. Edge is like browsers on iPad/iPhone and needs the same H264 compression style.

这篇关于Microsoft Edge 和 &lt;VIDEO&gt;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆