Kryptos
Kryptos

Reputation: 542

How to embed VLC in webpage

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.

Upvotes: 9

Views: 35887

Answers (1)

Kryptos
Kryptos

Reputation: 542

<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>

Upvotes: 9

Related Questions