Now I install the VLC on the Suse linux Enterprise 11 sp3.
I Install the VLC using command line:
sudo zypper ar http://download.videolan.org/pub/vlc/SuSE/SLE11 VLC
sudo zypper mr -r VLC
sudo zypper in vlc
The I can play the rtsp stream file use the VLC. Now I want to play the same rtsp stream file on the firefox.
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="100%" height="85%" id="vlc">
</embed>
<script language="Javascript">
var vlc=document.getElementById("vlc");
var id=vlc.playlist.add("rtsp://10.86.13.113:554/video.3gp");
vlc.playlist.playItem(id);
</script>
</body>
</html>
Then I following the document how to install the mozilla plugin on Debian on command line:
sudo zypper install mozilla-plugin-vlc
But the result that there could not find mozilla-plugin-vlc. And then I try to the following command line:
sudo zypper install vlc browser-plugin-vlc
And it same that there could not find browser-plugin-vlc.
Where can I find the mozilla-plugin-vlc or browser-plugin-vlc of SLES 11? Or I can use the same plugin of Debin or Ubuntu?
Thank you very much!