html - Can you embed VLC on a website so that people who doesn't have VLC installed can view it? -
i trying make video streaming site , want use vlc play video. however, want other people doesn't have vlc able view videos through vlc plugin. possible? want use vlc because can play anything.
the viewer has have vlc , browser plugin installed on there pc, depending on file format of video use html5 video tag.
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> browser not support video tag. update browser. </video>
this work if viewer has html5 ready browser meaning old versions of ie wont able see video code tell them have update there browser
Comments
Post a Comment