Search found 4 matches

Go to advanced search

by lightfighter
11 Jun 2012 14:37
Forum: Web and scripting
Topic: 2.0.1 vlc player in web page
Replies: 0
Views: 630

2.0.1 vlc player in web page

Hey all, Is there a good way to embed the VLC player 2.0.1 into a web page that contains all the controls (to include play, pause, volume, slider, and fullscreen)? I would really like to use this player because of it's playback quality, but I've never been able to get it to be in a web page and have...
by lightfighter
14 Apr 2011 18:49
Forum: Web and scripting
Topic: Hi, I need help for a vlc Html code
Replies: 3
Views: 1409

Re: Hi, I need help for a vlc Html code

I figured out how to add a pause button. Just after the following code: function stop(obj) { var obj = document.getElementById(obj); obj.playlist.stop(); } add this: function pause(obj) { var obj = document.getElementById(obj); obj.playlist.togglePause(); } and then add the button like this: <button...
by lightfighter
14 Apr 2011 18:31
Forum: Web and scripting
Topic: playing from a urls in a database
Replies: 2
Views: 932

Re: playing from a urls in a database

Hi there, There was another post that answered your question, but it only has the Play and Stop buttons. I can't figure out how to add Pause or Fullscreen, or any other controls. However, since you said you are using PHP from a database, here is the code modified to pull the movie from a database. <...
by lightfighter
14 Apr 2011 18:16
Forum: Web and scripting
Topic: Hi, I need help for a vlc Html code
Replies: 3
Views: 1409

Re: Hi, I need help for a vlc Html code

This is the only code that has worked for me. I too would like to have the rest of the control buttons if someone knows how to add them. I have tried many tutorials about adding controls, also many tutorials on how to embed the player into a web page, and so far this code is the only one that works.

Go to advanced search