如何在asp.net页面中播放mpg文件

发布于 2024-11-30 12:45:06 字数 60 浏览 0 评论 0原文

如何在asp.net页面中播放“wmv”或“mpg”文件。 为此我应该做什么。

需要帮助。

How to play "wmv" or "mpg" file in asp.net page.
For that what should i do.

Need help.

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

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

发布评论

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

评论(1

空宴 2024-12-07 12:45:06

打开要嵌入播放器的 HTML 页面,并将以下标记放置在要显示播放器的标记内:

<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" name="mediaplayer1" ShowStatusBar="true" EnableContextMenu="false" autostart="false" width="320" height="240" loop="false" src="MyVideo.wmv" />

确保在与 HTML 文件相同的目录中存在名为 MyVideo.wmv 的视频文件,或者只需更改src属性指向真实视频文件的路径。

Open the HTML page in which you want the player embedded and place the following tag within the tag where you want it to be displayed:

<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" name="mediaplayer1" ShowStatusBar="true" EnableContextMenu="false" autostart="false" width="320" height="240" loop="false" src="MyVideo.wmv" />

Be sure to have a video file named MyVideo.wmv in the same directory with the HTML file, or simply change the src attribute to point to the path of a real video file.

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