Files
v10/packages/sandbox/templates/html/main.ts
T

15 lines
382 B
TypeScript

// HTML sandbox — Web player (DOM/Browser)
// http://localhost:5173/html/
import '@videojs/html/video/player';
const html = String.raw;
document.getElementById('root')!.innerHTML = html`
<video-player>
<media-container>
<video src="https://stream.mux.com/lhnU49l1VGi3zrTAZhDm9LUUxSjpaPW9BL4jY25Kwo4/highest.mp4"></video>
</media-container>
</video-player>
`;