playable
playable copied to clipboard
Using Playable for live streams?
We are working on a project that lets people create video pages for prerecorded videos or live streams. How would we link to a live stream? The config code is below:
` document.addEventListener('DOMContentLoaded', function() { const config = { width: 800, height: 450, src: 'https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.webm', preload: 'metadata', nativeBrowserControls: false, disableControlWithClickOnPlayer: false, };
const theme = {
liveColor: '#fa4d56',
progressColor: '#0f62fe'
}
const player = Playable.create(config, theme);`