MVC中如何播放音频和视频

发布于 2024-10-23 23:06:22 字数 1225 浏览 0 评论 0原文

我正在移植一个 ASP。 NET 应用程序到 MVC。在一个页面中我需要播放音频和视频文件。 为此,我在应用程序中使用了 MediaPlayers.dll。 在 asp .net 中,我使用它,如下所示

<%@ Register Assembly="MediaPlayers" Namespace="MediaPlayers" TagPrefix="cc1" %>

,我使用以下代码访问该 dll,

     <cc1:MediaPlayer ID="MediaPlayer1" runat="server" Width="250" Height="42" autoStart="True"
                                                                                MovieWindowSize="0" ShowControls="True" UIMode="full" WindowLessVideo="True"
                                                                                AllowHideControls="True" AllowHideDisplay="True" Balance="0" ButtonsVisible="True"
                                                                                DisplayMode="0" EnableContextMenu="True" Enabled="True" Filename="" fullScreen="False"
                                                                                Invisible="False" Loop="1" Rate="1" ShowDisplay="False" StretchToFit="True" Volume="100">
                                                                            </cc1:MediaPlayer>

我可以使用 id Mediaplayer1 从代码后面访问它。

但现在在 mvc 中,我如何在我的应用程序中包含这个 dll 以及如何从控制器访问它?

I am porting an ASP. NET application to MVC .in one page i need to play audio and video file .
For that i used MediaPlayers.dll in the application.
In asp .net i usd it like shown below

<%@ Register Assembly="MediaPlayers" Namespace="MediaPlayers" TagPrefix="cc1" %>

and i accessed this dll using following code

     <cc1:MediaPlayer ID="MediaPlayer1" runat="server" Width="250" Height="42" autoStart="True"
                                                                                MovieWindowSize="0" ShowControls="True" UIMode="full" WindowLessVideo="True"
                                                                                AllowHideControls="True" AllowHideDisplay="True" Balance="0" ButtonsVisible="True"
                                                                                DisplayMode="0" EnableContextMenu="True" Enabled="True" Filename="" fullScreen="False"
                                                                                Invisible="False" Loop="1" Rate="1" ShowDisplay="False" StretchToFit="True" Volume="100">
                                                                            </cc1:MediaPlayer>

i can access it from code behind using the id Mediaplayer1.

But now in mvc, how i can include this dll in my application and how can i access it from controller?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

三生池水覆流年 2024-10-30 23:06:22

Razor Views 提供自己的媒体播放器处理方式。 描述位于 mvc 上地点。

Razor Views offer their own handling of media players. A description is on the mvc site.

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