-
Notifications
You must be signed in to change notification settings - Fork 7
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
fix(FEC-11697): 2 captions are selected in the menu #161
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 tasks
yairans
reviewed
Feb 13, 2022
yairans
reviewed
Feb 13, 2022
JonathanTGold
added a commit
to kaltura/playkit-js
that referenced
this pull request
Feb 20, 2022
issue: the create _addTextTrackOffOption method of the player creates duplicated indexes every time duplicated languages are detected (and warning created); fix: right now the index property of TextTrack is used as a unique identifier but in the other hand we don't mange it as such (the index is created in different places), so , the index management all moved to one place under the TextTrack class related pr: kaltura/playkit-js-dash#182 kaltura/playkit-js-hls#161 solves: FEC-11697 & FEC-11893 & FEC-11973
5 tasks
yairans
reviewed
Feb 21, 2022
yairans
reviewed
Feb 21, 2022
yairans
reviewed
Feb 21, 2022
yairans
reviewed
Feb 21, 2022
test fixes karma timeout settings
Co-authored-by: Yair Ansbacher <[email protected]>
yairans
reviewed
Mar 1, 2022
yairans
reviewed
Mar 1, 2022
yairans
reviewed
Mar 2, 2022
yairans
reviewed
Mar 2, 2022
yairans
approved these changes
Mar 2, 2022
JonathanTGold
added a commit
to kaltura/playkit-js-dash
that referenced
this pull request
Sep 7, 2022
borhandarabi
pushed a commit
to TasvirChi/playchi-js-dash
that referenced
this pull request
May 14, 2024
see kaltura/playkit-js#633 solves: FEC-11697 and FEC-11893 related pr: kaltura/playkit-js-hls#161 kaltura/playkit-js#633
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of the Changes
see kaltura/playkit-js#633
in addition regardless of the original issue
add error handling on load() method.
issue: the promise will remain 'pending' forever ... in case an manifest loading error
Since the promise resolving returned from the load() rely on Hlsjs.Events.MANIFEST_LOADED event https://github.com/kaltura/playkit-js-hls/blob/master/src/hls-adapter.js#L140 to be resolved which is not fired in case of en error
fix: call promise reject in case of fatal error and still pending promise
solves: FEC-11697 and FEC-11893
related pr:
kaltura/playkit-js-dash#182
kaltura/playkit-js#633
CheckLists