I compiled vlc and plugins from git source,with
./configure --enable-faad --enable-run-as-root --enable-realrtsp --enable-mozilla --enable-live555 --with-live555-tree=/home/djstava/live --enable-lirc --enable-lua
Code: Select all
<html>
<head><title>Demo of VLC mozilla plugin</title></head>
<body>
<h1 align="center">Demo of Firefox VLC Plugin</h1>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
version="VideoLAN.VLCPlugin.2" width="1024" height="800" border="0" id="vlc">
</embed>
<script language="Javascript">
var vlc=document.getElementById("vlc");
var id=vlc.playlist.add("rtsp://127.0.0.1:8554/demo1.ts");
vlc.playlist.playItem(id);
Help.
djstava