我正在尝试将 VLC 媒体播放器添加或嵌入到我的 asp.net 网页中。
the error I am getting is that object tag must contain a class,classid or progid attribute but I don't know how to get the values for those attributes.
如果可能的话,请帮助并为任何可以运行 MP4 视频的媒体播放器提供任何其他方式。我
在设计中编写了以下代码
<div>
<object type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
autoplay="yes" lop="no" runat="server" ID="video"
style="width: 452px; height: 278px" />
<object classid="clsid:9BE31822-FDAD-461B-D51-BE1D1C159921" codebase="http://download.videolan.org/pub/videolan/vlc/last/win32/axvlc.cab"
height="28"></object>
</div>
<div><asp:Button ID="button_play" runat="server" Text="Play" on click="button_play_Click"/>
</div>
the error I am getting is that object tag must contain a class,classid or progid attribute but I don't know how to get the values for those attributes.Please help and be free to suggest any other way if possible for any media player that can run MP4 videos.