MVC中如何播放音频和视频
我正在移植一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Razor Views 提供自己的媒体播放器处理方式。 描述位于 mvc 上地点。
Razor Views offer their own handling of media players. A description is on the mvc site.