如何使用html5视频标签播放dnn中所有格式的视频?
我正在使用 html5 视频标签在 dnn 中播放视频。这里 .mov 视频仅在 dnn 中播放,但我想播放 .mp4、.flv、.mpeg 等。im 每个视频播放的正常 aspx 页面,但仅在 dnn 中播放。移动。
<html5:Video ID="video1" runat="server" Url="~/Videofiles/trailer_480p.mov" Width="300" Height="300" DisplayControls="true" AutoPlay="true"></html5:Video>
这在 dnn 中工作得很好,但如果我想播放 .mp4 它不支持。 我也尝试过这样的:
<video width="320px" height="240px" autobuffer="autobuffer" autoplay="autoplay" controls="controls" poster="/video/thumb/vide1.jpg">
<source src='Videofiles/VIDEO India.mp4' type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
任何想法表示赞赏。
I'm using html5 video tag to play a video in dnn.Here .mov videos only playing in dnn,but i want to play .mp4, .flv, .mpeg etc.im normal aspx pages every video playing but in dnn only .mov .
<html5:Video ID="video1" runat="server" Url="~/Videofiles/trailer_480p.mov" Width="300" Height="300" DisplayControls="true" AutoPlay="true"></html5:Video>
This works fine in dnn,but if i want to play .mp4 it's not supporting.
And also i tried like this:
<video width="320px" height="240px" autobuffer="autobuffer" autoplay="autoplay" controls="controls" poster="/video/thumb/vide1.jpg">
<source src='Videofiles/VIDEO India.mp4' type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
Any idea appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过确保 IIS 中启用了 MP4?默认情况下,我不相信 IIS 会允许该 mime 类型。
您需要将其添加到 IIS 中
扩展名: mp4
MIME 类型:video/mpeg
如果您使用 IIS7,则可以使用如下代码将其添加到 web.config 中。
Have you tried making sure MP4 is enabled in IIS? By default I don't believe IIS will allow that mime type.
You'll need to add it in IIS
Extension: mp4
MIME type: video/mpeg
You can probably add it in the web.config if you are using IIS7 using code like the following.