Jump to content

embeding VLC player in my site


lakshmiyb

Recommended Posts

i don't think that's how it works, your operating system selects what player you will use.

 

in order to do what your saying, you would need to have an (completely not worth it) object witch imports a downloaded player which has been installed automatically onto your system.

    * SRC: URL of resource to be embedded

    * WIDTH: width of area in which to show resource

    * HEIGHT: height of area in which to show resource

    * ALIGN: how text should flow around the picture

    * NAME: name of the embedded object

    * PLUGINSPAGE: where to get the plugin software

    * PLUGINURL: where to get the JAR archive for automatic installation

    * HIDDEN: if the object is visible or not

    * HREF: make this object a link

    * TARGET: frame to link to

 

 

<EMBED

    SRC="/cgi-bin/whack.slack.cgi"

    HEIGHT=170 WIDTH=150

    PLUGINSPAGE="WhackSlackPlugin.html"

    >

 

 

If the browser has not already prompted you to retrieve the plugin software, and if you have the type of browser which supports plugins, try clicking on the plugin space above.

 

http://www.htmlcodetutorial.com/embeddedobjects/_EMBED_PLUGINSPAGE.html

 

<html>

<title>VLC Mozilla plugin test page</title>

<body>

<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"

    width="640"

    height="480"

    id="vlc">

</embed>

<script language="Javascript">

<!--

var vlc = document.getElementById("vlc");

vlc.audio.toggleMute();

!-->

</script>

</body>

</html>

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.