How to embed VLC in webpage

Kryptos picture Kryptos · Aug 4, 2013 · Viewed 25k times · Source

I am trying to embed a video into my HTML/ASP webpage using VLC. The box appears showing the VLC player in FireFox, but it won't play anything. This is what it looks like:

enter image description here

Please tell me what I am doing wrong.. I've tried many different things.

Answer

Kryptos picture Kryptos · Aug 4, 2013
<embed 
    type="application/x-vlc-plugin" 
    pluginspage="http://www.videolan.org" 
    version="VideoLAN.VLCPlugin.2"
    width="640"
    height="480"
    target="file:///x:/vid.avi"
    id="vlc">
</embed>