我在我的项目中使用asp.net和C#,我希望在我的网页上显示视频,该视频已上传到我的网站上。
我所做的是我正在使用,
string path = "MyFolder/Wildlife - Copy.avi";
Page.Controls.Add(new LiteralControl("<video width='320' height='240' controls='controls'><source src=" + path + " type='video/avi'></video>"));
它运行wel,我尝试的另一种方式是,
<embed runat="server" id="embed_video" type="video/x-msvideo" autoplay="true" autostart="true" width="600" height="420"></embed>
和C#代码背后是,
embed_video.Attributes.Add("src", "MyFolder/Wildlife.wmv");
它运行得很好但是如果我改为.avi或其他视频它没有运行但它在网页上什么也没有显示,甚至在上述两种情况下都不显示视频播放器。
你能帮我用任何文件格式播放视频????
请提前帮助