如何使用html5视频标签播放dnn中所有格式的视频?

发布于 2025-01-04 04:27:18 字数 660 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身仙ぐ女味 2025-01-11 04:27:18

您是否尝试过确保 IIS 中启用了 MP4?默认情况下,我不相信 IIS 会允许该 mime 类型。

您需要将其添加到 IIS 中
扩展名: mp4
MIME 类型:video/mpeg

如果您使用 IIS7,则可以使用如下代码将其添加到 web.config 中。

<system.webServer>
        <staticContent>
            <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
            <mimeMap fileExtension=".m4v" mimeType="video/m4v" />
     </staticContent>
    </system.webServer>

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.

<system.webServer>
        <staticContent>
            <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
            <mimeMap fileExtension=".m4v" mimeType="video/m4v" />
     </staticContent>
    </system.webServer>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文