javascript - Where is VLC browser plugin documentation? -


i don't having luck trying find it. information on wiki outdated, vlc javascript object has changed lot since wiki page written. google searching give me more updated of how current interface is.

for example, wiki says document.video1.play() in demo page, browser says object not have such method. found in current interface play method moved child object named playlist. document.video1.playlist.play() works.

i tried enumerate properties of javascript object reason not work playlist object has of methods interested in. if use method (how enumerate properties of javascript object? , how display methods of object in javascript?) enumerate properties playlist object 2 properties , no method name, including ones confirmed exists. tried in chrome , firefox.

so far have confirmed following interface:

vlc multimedia plugin (compatible totem 3.4.3)

if main embeddable object called vlc in document (i don't video1) can access methods by:

// don't need explain these, document.vlc.playlist.play(); document.vlc.playlist.stop();  // pauses or resumes video, if paused can resume using play() method // yes, has toggle word, wiki demo obsolete document.vlc.playlist.togglepause();  // go fullscreen, , if in fullscreen go browser window again document.vlc.video.togglefullscreen(); 

with have basic functionality of player , can something.

"go source code" valid answer, prefer let last thing do. prefer in documentation form, if such thing exists particular project.

this seems more close can learn more plugin interface: http://blog.revolunet.com/vlccontrols/

still, in documentation form nice.

if link updated examples, documentation, etc, inexistent tips on how find out rest of interface welcome.

having had same issues i've come accross actual wikipedia entry vlc browser plugin.

last modified earlier year , has accurate info on parameters , events.

link : documentation:webplugin


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -