Page 1 of 1

VLC player on web site

Posted: 10 May 2011 20:49
by xeflex
Hellou

1st Sorry for my English I am from Czech Republics
2nd I would like to ask for advice I would like VLC to play the file m3u file on the website. Please play back a script or instructions on how to do it.

Thank you all can help me.

Re: VLC player on web site

Posted: 17 May 2011 07:35
by viztechwebservices
VLC Media Player is a long-time open-source favorite, and the latest version is also the first to be out of beta development. It's not the only option for free video playback, but it's one of the best, and the feature updates in version 1 make it well worth the upgrade.

Re: VLC player on web site

Posted: 19 May 2011 15:57
by kollepara
It is not working.

Code: Select all

<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" autoplay="yes" target="http://server/streaming/playlist.m3u"> </embed> <script language="Javascript"> var vlc = document.getElementById("vlc"); vlc.audio.toggleMute(); vlc.play(); </script> </body>