Documentation Index
Fetch the complete documentation index at: https://docs.velt.dev/llms.txt
Use this file to discover all available pages before exploring further.
React / Next.js
Other Frameworks
Add the data-sync-video-player attribute to your video player
To enable Video Player Sync in any video, add the data-sync-video-player="true" attribute to your video player.<div>
<video data-sync-video-player="true"></video>
</div>
Test it out
Test out Video Player Sync by opening two clients side-by-side and having one client play the video player.
Add the data-sync-video-player attribute to your video player
To enable Video Player Sync in any video, add the data-sync-video-player="true" attribute to your video player.<div>
<video data-sync-video-player="true"></video>
</div>
export default function App() {
return (
<div>
<video data-sync-video-player="true"></video>
</div>
);
}