-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
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
Flash Player Events Data #2748
Flash Player Events Data #2748
Conversation
Tests failed. Automated cross-browser testing via Sauce Labs and Travis CI shows that the JavaScript changes in this pull request are: BUSTED Commit: a4b4f9a52a845440a480ec7e0e4873f1c0f8cc65 (Please note that this is a fully automated comment.) |
Can we get this test to rerun without pushing a commit? I'm not sure the failure was related to my code change. |
Yes, though, I'm not sure I want to take on the maintenance for this since we're trying to move away from flash as much as possible. @pam retry |
I totally understand, but it really is a only a single event passed up from the SWF though and the possibility of other arguments passed up (otherwise, |
Seemed to fail again. I have a BrowserStack account of my own. I should be able to run these tests on my own machine as long as I export the proper |
@pam retry |
Now it's trying again. |
Tests failed. Automated cross-browser testing via Sauce Labs and Travis CI shows that the JavaScript changes in this pull request are: BUSTED Commit: a4b4f9a52a845440a480ec7e0e4873f1c0f8cc65 (Please note that this is a fully automated comment.) |
@gkatsev is there any way to run the
Just a little information on why we're wanting this feature: this has great value, especially for broadcasters (we are a news station and are working to integrate this player as our new video player) who, by law, have to provide closed captions for live streams, which is currently done through RTMP in our system. |
Actually, it's failing because of the various warnings. If you rebase against master it should succeed. |
a4b4f9a
to
7a7ef14
Compare
Tests passed. Automated cross-browser testing via Sauce Labs and Travis CI shows that the JavaScript changes in this pull request are: CONFIRMED Commit: 7a7ef14de0b8ba031441239f2ea9e4f5884514e1 (Please note that this is a fully automated comment.) |
@gkatsev Awesome, thanks for the help. For what it's worth, this goes with the video-js-swf PR here: videojs/video-js-swf#188 |
Is there any update on if this could get merged in along with its companion SWF PR? It's extremely important as broadcasters to have flash captions available to comply with legal regulations for our video streams. Thanks! |
7a7ef14
to
bb12bf9
Compare
Is there any update on this? |
Sorry, with the holidays and everything it's been busy and hectic. We'll try to get to this soon. Thanks. |
Completely understand, just didn't want this to get lost. Thanks for the response! |
bb12bf9
to
6633966
Compare
Any update on this? |
@alex-phillips hey, sorry for the super long wait, it keeps getting away from us. Any ideas on how to test this? I'm not sure how to create an rtmp stream with textdata. |
Got it working by using the trial wowza server. Couldn't really get it any other way. |
@@ -2767,6 +2776,8 @@ Player.prototype.options_ = { | |||
*/ | |||
Player.prototype.handleLoadedMetaData_; | |||
|
|||
Player.prototype.handleTextData_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a jsdoc comment here, similar to how loadeddata
is below, for example.
I can add it myself when I'm merging if it isn't done by then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gkatsev Added the JSDoc. Thanks!
The swf part of this has finally been released as 5.1.0, would you be able to update the dependency to point to that? |
2a4c992
to
ad29c0e
Compare
ad29c0e
to
c4944f0
Compare
@gkatsev Version's been updated. Thanks! |
@alex-phillips cool! Did we lose the jsdoc comment? |
@gkatsev D'oh, missed that during the merge. Fixed! |
It happens. Thanks. |
LGTM |
It's merged! Thanks @alex-phillips. |
These changes add the
textdata
event emitted from the Flash module (PR: videojs/video-js-swf#188). In order for this event to receive the text data from the SWF, this change also passes all additional parameters from the triggered event into the handler in the JS.