-
Notifications
You must be signed in to change notification settings - Fork 11
Streaming feedback #579
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
Merged
Merged
Streaming feedback #579
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
d144eb8
Add note that DVR window size is set at the channel level
jeroentempels-dolby 80cd06c
Document pull/push mode support and SRT passphrase usage
jeroentempels-dolby 546ee0c
Add note that DRM is a fully managed premium feature
jeroentempels-dolby dc106e8
Add some additional information
jeroentempels-dolby e459fe7
Add viewer tracking page with tracking workflow and JWT examples
jeroentempels-dolby 6721f46
Add dashboard section with screenshot to image overlays page
jeroentempels-dolby 60309d8
Update changelog through PR instead of pre-built
jeroentempels-dolby 5c37262
Remove unused changelog script
jeroentempels-dolby a145677
Update viewer tracking text to match example
jeroentempels-dolby 9411373
Add API reference links to webhook documentation
jeroentempels-dolby 54ef573
Add channel overview description to generated-index page
jeroentempels-dolby 68b306a
Add DVR distribution enablement note and large window caution
jeroentempels-dolby 35d800f
Align HLS latency values to 8s+ across all pages
jeroentempels-dolby fb32109
Fix prettier formatting
jeroentempels-dolby 97e08da
update webhooks guide: describe right request body
TimLeenaers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| name: Update THEOlive changelog | ||
| on: | ||
| # Runs every hour | ||
| schedule: | ||
| - cron: '0 * * * *' | ||
| workflow_dispatch: | ||
| jobs: | ||
| update: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
| env: | ||
| # The branch that will receive the changelog update (will be created if it doesn't exist) | ||
| # Will automatically open a new PR (if no PR exists yet) | ||
| UPDATE_BRANCH: update-theolive-changelog | ||
| steps: | ||
| - name: Create app token | ||
| uses: actions/create-github-app-token@v3 | ||
| id: app-token | ||
| with: | ||
| app-id: ${{ vars.THEOPLAYER_BOT_APP_ID }} | ||
| private-key: ${{ secrets.THEOPLAYER_BOT_PRIVATE_KEY }} | ||
| - name: Checkout | ||
| uses: actions/checkout@v6 | ||
| with: | ||
| token: ${{ steps.app-token.outputs.token }} | ||
| fetch-depth: 1 | ||
| - name: Configure Git user | ||
| run: | | ||
| git config user.name 'theoplayer-bot[bot]' | ||
| git config user.email '873105+theoplayer-bot[bot]@users.noreply.github.com' | ||
| - name: Fetch THEOlive changelog | ||
| run: | | ||
| curl -fsSL -o theolive/changelog.md \ | ||
| 'https://engine-changelog.s3.eu-west-3.amazonaws.com/CHANGELOG.md' | ||
| - name: Check for changes | ||
| id: check_changes | ||
| run: | | ||
| if git diff --quiet theolive/changelog.md; then | ||
| echo "No changelog changes detected." | ||
| else | ||
| echo "changed=true" >> "$GITHUB_OUTPUT" | ||
| fi | ||
| - name: Commit and push changes | ||
| if: ${{ steps.check_changes.outputs.changed }} | ||
| run: | | ||
| git checkout -b $UPDATE_BRANCH | ||
| git add theolive/changelog.md | ||
| git commit -m 'Update THEOlive changelog' | ||
| git push --force origin HEAD:$UPDATE_BRANCH | ||
| - name: Check if pull request already exists | ||
| if: ${{ steps.check_changes.outputs.changed }} | ||
| id: check_pr_exists | ||
| run: | | ||
| pr_count=$(gh pr list --base main --head "$UPDATE_BRANCH" --state open --limit 1 --json number --jq length) | ||
| if ((pr_count > 0)); then | ||
| echo "exists=true" >> "$GITHUB_OUTPUT" | ||
| fi | ||
| env: | ||
| GH_TOKEN: ${{ steps.app-token.outputs.token }} | ||
| - name: Create pull request | ||
| if: ${{ steps.check_changes.outputs.changed && !steps.check_pr_exists.outputs.exists }} | ||
| run: | | ||
| gh pr create \ | ||
| --base main \ | ||
| --head "$UPDATE_BRANCH" \ | ||
| --title "Update THEOlive changelog" \ | ||
| --body "This PR pulls in the latest THEOlive engine changelog." | ||
| env: | ||
| GH_TOKEN: ${{ steps.app-token.outputs.token }} |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,6 @@ | |
| .docusaurus | ||
| .cache-loader | ||
| static/theoplayer-license.txt | ||
| theolive/changelog.md | ||
|
|
||
| # Misc | ||
| .DS_Store | ||
|
|
||
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # Changelog | ||
|
|
||
| ## [10.13.0] - 2026-03-25 | ||
|
|
||
| - Added image overlay support | ||
| - Upgraded to GStreamer 1.28.1 | ||
| - Upgraded to Rust 1.94 | ||
|
|
||
| ## [10.12.0] - 2026-03-06 | ||
|
|
||
| - Optimized encode of HLS when HESP is disabled | ||
| - Allow enabling / disabling of individual protocols | ||
| - Improved quality of de-interlacing | ||
| - Improved quality of video scaler | ||
| - Upgraded to GStreamer 1.28 | ||
| - Simplified stream config | ||
| - VMAF | ||
| - eRTMP built-in from GStreamer | ||
| - Improved logging | ||
| - Disable PlayReady | ||
| - Deprecate /streams | ||
|
|
||
| ## [10.9.0] - 2026-01-30 | ||
|
|
||
| - Initial changelog |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.