Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

embed vlc player in HTML

i am trying to embed vlc player in a web page. what is the best way to do it. actually i have to stream a video file using vlc and show it on the web page so that other users logging to my site could see that video. i have tried various snippts but unable to embed it. any help will be greatly appreciated. Thanks

like image 439
user376500 Avatar asked Jun 25 '10 17:06

user376500


People also ask

How do I embed a VLC player in a Web page?

Personal Web Page To add the VLC media player you must first use the coding "<embed type="application/x-vlc-plugin" and then add perimeters for the link and stream. Different options include "autoplay," "width," "height" and navigation functions.

Can VLC play HTML?

Re: Is there any HTML code for VLC player? Yes. But keep in mind that website readers need to have installed VLC with its web plugins to use it.


1 Answers

HTML way, make sure when u install VLC, u install Mozilla plug-in or ActiveX control stuff for (FF, IE or Chrome)

<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"  width="100%"  height="100%" id="vlc" loop="yes" autoplay="yes" target="http://10.1.2.201:8000/"></embed>
like image 77
c2h2 Avatar answered Sep 21 '22 16:09

c2h2