我想播放像.mp4,.3gp这样的视频文件。我的asp.net mvc应用程序中的.avi和flv 我的视频文件保存在数据库中。存储为字节
现在如何显示此文件列表和w 如何在选择播放后显示我的视频预览,如youtube
答案 0 :(得分:0)
网上有很多关于你问题的文章,这里有一篇你可以使用的文章http://www.aspsnippets.com/Articles/Upload-Save-Retrieve-and-Play-MP4-Video-files-with-live-streaming-from-Database-in-ASPNet-using-C-and-VBNet.aspx
答案 1 :(得分:0)
从数据库/ PC播放视频文件的最简单方法
<div width="320" height="240" controls>
<video>
<source src="@Url.Content(Model.tbl_Video.VideoPath)" type='video/mp4' />
</video>
</div>
source属性需要传递url而不是字符串
所以@ Url.Content将路径转换为Url
希望这有帮助!