We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The README indicates that at present, I can get events when the user starts or stops playback via addListener and removeListener...
addListener
removeListener
viewer.addListener('playing', function (isPlaying) { // code });
... but what if I just want to check, once, whether the video is playing? It would be nice to able to do
viewer.getProperty('isPlaying', function (isPlaying) { // code });
We can create our own variable to keep track of such state and update it via the event handler, but this is less than ideal for two reasons:
Would it be possible to allow all the events listed in the readme to be given corresponding getProperty calls? i.e.
getProperty
The text was updated successfully, but these errors were encountered:
This is a reasonable request, but we need to implement this inside the player.
I'll update this ticket, when it's accessible through the API.
Thank you
Sorry, something went wrong.
Hi guys, is this on the roadmap anytime soon? Seems like a pretty simple one
+1
Anyone maintaining this?
No branches or pull requests
The README indicates that at present, I can get events when the user starts or stops playback via
addListener
andremoveListener
...... but what if I just want to check, once, whether the video is playing? It would be nice to able to do
We can create our own variable to keep track of such state and update it via the event handler, but this is less than ideal for two reasons:
Would it be possible to allow all the events listed in the readme to be given corresponding
getProperty
calls? i.e.The text was updated successfully, but these errors were encountered: