Hi,
I am using the nightly build of the mozilla plugin and would like to be able to access
vlc.input.fps and vlc.input.position
currently I have as a test action on a button when the video is playing
var vlc = document.getElementById("vlc");
if (vlc.input.state > 0)
{
alert(vlc.input.fps);
}
however it is always showing 0 and the same for vlc.input.position, length and time work ok though.
Is there a work around for this at all, since I would like to enable advance by frame and need to know the number of fps to set vlc.input.position.
Many thanks,
Norman