Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 943
Kryptos Avatar asked Aug 04 '13 06:08

Kryptos


People also ask

How do I enable VLC web interface?

To activate the web interface, click the Tools menu in VLC and select Preferences. Click the All option under Show settings to view VLC's advanced settings. Scroll down in the list of advanced settings and select Main interfaces under the Interface header. Click the Web check box to enable the HTTP interface.

What is browser plugin VLC?

The VLC media player webplugins are native browser plugins, similar to Flash or Silverlight plugins and allow playback inside the browser of all the videos that VLC media player can read.

Is VLC a Web browser?

VLC for Chrome OS. VLC media player is a free and open source cross-platform multimedia player that plays most video files and network streaming protocols. VLC media player is a free and open source cross-platform multimedia player that plays most video files and network streaming protocols.


1 Answers

<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>
like image 183
Kryptos Avatar answered Oct 13 '22 00:10

Kryptos