0

我有一个应用程序,我在其中浏览视频并将其存储在文件夹中并将路径保存到数据库。

路径是这样的:

http://dc620x_abcd/DesktopModules/DNNCentric-VC_ManageLessions/rq/ref/1.mp4 

在下一页上,我想在 html 页面中显示相同的视频。我尝试使用iFrameHtml 作为

 <iframe id="frame1" runat="server" visible="false" style="height: 222px; width: 482px;">
                </iframe>



Finalpath = filepath + filename;
                frame1.Visible = true;
                frame1.Attributes.Add("embed src", Finalpath);

但它没有提供太多帮助,因为它不提供嵌入 iFrame 中的视频(而不是在 iframe 中播放视频,它要求下载)。我可以让视频以一种iframe或其他方式播放相同的任务吗?感谢您的帮助

4

2 回答 2

0

您可以使用 html5 视频标签:

<video width="320" height="240" controls="controls">
  <source src="http://dc620x_abcd/DesktopModules/DNNCentric-VC_ManageLessions/rq/ref/1.mp4" type="video/mp4" />
  Your browser does not support the video tag.
</video>
于 2012-09-28T08:02:51.610 回答
0

您应该使用视频标签http://www.w3schools.com/html5/tag_video.asp 或一些视频播放器http://videojs.com/

于 2012-09-28T08:03:16.140 回答