-
Notifications
You must be signed in to change notification settings - Fork 2.7k
feat: Add sync between TimeSeries, Video, Audio #7376
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
Open
cloudmark
wants to merge
4
commits into
HumanSignal:develop
Choose a base branch
from
cloudmark:feature/timeline-sync
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+276
−2
Conversation
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
… components Fixes #4892: How can we label video and time series signals while watching them together? Fixes HumanSignal#5359: Video/audio sync doesn't work - Add sync attribute to TimeSeries tag model to enable group-based synchronization - Compose TimeSeries with SyncableMixin for event broadcasting and handling - Implement sync event handlers for seek, play, and pause events - Add smooth view updates during audio/video playback - Prevent event flooding by suppressing sync events during playback - Maintain view window size during playback - Map media timeline to TimeSeries range (start/end points) This enables synchronized playback and seeking between Video, Audio, and TimeSeries components when they share the same sync group. Multiple TimeSeries components can also sync with each other, allowing for coordinated view updates across different time series data. For example: ``` <View> <Video name="video" value="$video" sync="group_a"/> <AudioPlus name="audio" value="$audio" sync="group_a"/> <TimeSeries name="accel_timeseries" value="$accel_data" sync="group_a"> <Channel column="accel_x" strokeColor="#FF0000"/> <Channel column="accel_y" strokeColor="#00FF00"/> </TimeSeries> <TimeSeries name="gyro_timeseries" value="$gyro_data" sync="group_a"> <Channel column="gyro_x" strokeColor="#0000FF"/> <Channel column="gyro_y" strokeColor="#FF00FF"/> </TimeSeries> </View> ```
👷 Deploy request for heartex-docs pending review.Visit the deploys page to approve it
|
👷 Deploy request for label-studio-docs-new-theme pending review.Visit the deploys page to approve it
|
✅ Deploy Preview for label-studio-storybook ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
… components
Fixes #4892: How can we label video and time series signals while watching them together?
Fixes #5359: Video/audio sync doesn't work
This enables synchronized playback and seeking between Video, Audio, and TimeSeries components when they share the same sync group. Multiple TimeSeries components can also sync with each other, allowing for coordinated view updates across different time series data. For example: