如何在asp.net mvc中播放wmv和flv文件
我想在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这与 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 %>)
我同意保罗的观点。
我想补充一点,一旦您设置了要使用的 html/脚本,您可以将其放入自定义扩展方法中,这样在视图中它就会结束一些简短的内容,例如:
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: