-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: add playlist management plugin to pillarbox player #6
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
Coverage Report
File Coverage
|
|
jboix
force-pushed
the
feat/playlist-plugin
branch
2 times, most recently
from
May 10, 2024 13:39
cd3af51
to
4087855
Compare
amtins
reviewed
May 14, 2024
amtins
reviewed
May 14, 2024
amtins
reviewed
May 14, 2024
amtins
reviewed
May 14, 2024
amtins
reviewed
May 14, 2024
amtins
reviewed
May 14, 2024
amtins
reviewed
May 14, 2024
amtins
reviewed
May 14, 2024
Introduces a pillarbox playlist plugin. This plugin supports playlist loading, dynamic modifications, auto-advancement, and repeat functionalities. ***Key Features:*** - **Initialization Options**: Configurable through an options object that can include an initial playlist, and settings for repeat and auto-advance behaviors. - **Dynamic Playlist Management**: Methods to load, push, splice, and shuffle playlist items dynamically. - **Playback Control**: Functions to navigate through the playlist such as next, previous, and select specific items. - **State Properties**: Properties like `repeat` and `autoadvance` which can be toggled post-initialization to alter playback behavior. ***Example*** ```javascript import Pillarbox from '@srgssr/pillarbox-web'; import '@srgssr/pillarbox-playlist'; const player = new Pillarbox('my-player', { plugins: { pillarboxPlaylist: { autoadvance: true, repeat: true } } }); const playlist = [ { sources: [{ src: 'video1.mp4', type: 'video/mp4' }], poster: 'poster1.jpg' }, { sources: [{ src: 'video2.mp4', type: 'video/mp4' }], poster: 'poster2.jpg' } ]; player.pillarboxPlaylist().load(playlist); ```
jboix
force-pushed
the
feat/playlist-plugin
branch
from
May 14, 2024 15:02
4087855
to
840da53
Compare
amtins
approved these changes
May 14, 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.
LGTM! 🚀
🎉 This PR is included in version @srgssr/pillarbox-playlist-v1.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
🎉 This PR is included in version @srgssr/skip-button-v1.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
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
Introduces a pillarbox playlist plugin. This plugin supports playlist loading, dynamic modifications, auto-advancement, and repeat functionalities.
Key Features
repeat
andautoadvance
which can be toggled post-initialization to alter playback behavior.Example
Other Changes
Checklist