如何在asp.net mvc中播放wmv和flv文件

发布于 2024-09-25 00:07:18 字数 62 浏览 1 评论 0原文

我想在我的 asp.net mvc 应用程序中播放 wmv 和 flv 等视频文件?最好的解决方案或插件是什么

i want to play video files like wmv and flv in my asp.net mvc application? what is the best solution or plugin to do so

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

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

发布评论

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

评论(2

紫轩蝶泪 2024-10-02 00:07:18

这与 ASP.NET MVC 关系不大,与 HTML 关系更大。您可以在网上找到大量有关如何在 HTML 中执行此操作的资源:

这只是来自快速 bing 搜索分别是“嵌入 wmv html”和“嵌入 flv html”。 MVC 中没有任何内容是专门为处理 WMV/FLV 而设计的。如果您需要使用控制器中的数据来构建嵌入 HTML 代码,您可以从模型中输出它,就像通常用于链接或其他任何内容一样(即 <%=Model.VideoUrl %>)

This has little to do with ASP.NET MVC and more to do with HTML. You'll find numerous resources online of how to do this in HTML:

That was just from a quick bing search for "embed wmv html" and "embed flv html" respectively. There's nothing in MVC that is specifically designed for handling WMV/FLV. If you need to use data from your controller to build the embed HTML code, you can output it from your Model like you normally would for links or anything else (i.e. <%=Model.VideoUrl %>)

花伊自在美 2024-10-02 00:07:18

我同意保罗的观点。

我想补充一点,一旦您设置了要使用的 html/脚本,您可以将其放入自定义扩展方法中,这样在视图中它就会结束一些简短的内容,例如:

<%: Html.FlashVideo(someFilePath, related values) %>

I agree with Paul.

I'd like to add that once you are set on the html/script you will be using, you can put it in a custom extension method so in the view it ends something short like:

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