Add adaptive streaming bitrate control to Clapper API #506
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.
Allow setting start, min and max bitrates when streaming adaptive content such as DASH or HLS. This has potential to allow to implement video quality selector, although available representations bitrates are not yet forwarded to apps.
With this comes a GStreamer version bump to 1.24 and a switch to
playbin3
by default. We do not want to introduce APIs that work only if user has a certain dependency version, thus this bump instead of version check. This is also needed for recently introduced adaptive streaming fromclapper-enhancers
to work correctly with default settings. All major Linux distros (including LTS) should be already on GStreamer 1.24, thus we should be able to bump this version without much complains now.Related work on GStreamer side (since 1.24 - reason for version bump):
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3894
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3895