-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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: Improved HEAD request fail test when fallback-ing to GET request #6044
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
- Allow to have multiple transmuxers, but choose only the one that is valid depending on whether it supports the codecs or not - Supported codecs: AAC, AC-3, EC-3, H.264, MPEG/MP3 - It is prepared to allow more codecs in the future (HEVC/H.265) (no muxed)
This is necessary for enable the muxed TS transmuxer in the future.
…broken platforms (shaka-project#5561) When controlling the content we're playing from one end to another, we don't need to do the extra check for working around broken platforms (parsing mp4 boxes to find encryption, insert one if there isn't if the content is encrypted). On a Tizen 5.0, the check without having to append the fake encryption takes between 5 to 10ms to complete. Time that is added to the launch time, or the time needed to seek if there is a downgrade for seeking. That's not much, but when having a start time of 1000ms, that's still at best 1% we can shave off 😅 --------- Co-authored-by: Joey Parrish <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This reverts commit 18ffa2c. So long as we make feature releases with a reasonable (< 100 PRs) granularity, we won't need to keep doing this. Let's try to keep v4.4 an anomaly.
Fixes the mvex generation Removes width and height from tkhd box for audio tracks
This prevent errors when the codec specified is not the same that in the stream, and also fixes the override when there are multiples codecs (eg: muxed content)
Now maintainers can send commands to Shaka Bot via PR comments. Initially, Shaka Bot understands the following commands from anyone: - `@shaka-bot help`: Show this help message And the following commands from maintainers only: - `@shaka-bot test`: Start lab tests on all devices - `@shaka-bot test ce`: Start lab tests on CE devices only (no desktop browsers)
This changes the way pes are processed to gain efficiency and avoid parsing incorrect pes.
…5575) Fixes shaka-project#5572 The main problem is that the content has audio and video muxed and then has the alternative audio tracks. We need to detect that the main content is muxed and only extract the video. Test stream: https://ztnr.rtve.es/ztnr/1694255.m3u8
…shaka-project#5579) This gets around some compilation issues I had with a large codebase.
This is an automated sync of common workflows for this organization. The upstream source is: shaka-project/shaka-github-tools@4245160 Co-authored-by: Shaka Bot <[email protected]>
This enables workflows to be triggered automatically on release PRs, instead of requiring maintainers to edit the PR description on every release to trigger required PR workflows. This uses a separate token from the other shaka-bot token, because it requires additional permissions to make releases.
Stop using a fork to run release actions. Either it is missing a feature or I misunderstood what that flag is for. See https://github.com/google-github-actions/release-please-action/issues/819
…n using legacy Apple Media Keys (shaka-project#5603)
Preferred track selection was implemented differently for MSE and native playback. In fact, native playback even had different implementations for audio and text. It leads to inconsistencies during track selection, i.e. if track language contains locale, but language preference not, on MSE we're looking for closest locale and on src= we're making direct string comparison which leads to different results. To unify that, both MSE and native will now use `StreamUtils.filterStreamsByLanguageAndRole()` to find matching track. This method is designed to use on `shaka.extern.Stream` but luckily it uses the very same fields as defined in `shaka.extern.Track` so we can use it without major changes. Moreover, using this more robust method also allows us to get rid of double-selection workaround used so far. Observe that we were first selecting track without preferred role and then with preferred role.
avelad
requested changes
Jan 8, 2024
avelad
added
type: bug
Something isn't working correctly
priority: P2
Smaller impact or easy workaround
labels
Jan 8, 2024
avelad
requested changes
Jan 8, 2024
avelad
requested changes
Jan 8, 2024
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.
Revert the changes of .gitignore
avelad
approved these changes
Jan 8, 2024
avelad
pushed a commit
that referenced
this pull request
Jan 9, 2024
avelad
pushed a commit
that referenced
this pull request
Jan 9, 2024
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
priority: P2
Smaller impact or easy workaround
status: archived
Archived and locked; will not be updated
type: bug
Something isn't working correctly
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.
This should close #6016.
Following PR #5986, it appears that servers don't always return correct HTTP status error code when
HEAD
request is not supported. It should be405
but badly configured servers could return404
.So I replaced:
by:
This change was made in
lib/hls/hls_parser.js
andlib/net/networking_utils.js
.