svelte-video-player
svelte-video-player copied to clipboard
Basic video player component for svelte
This code [here](https://github.com/meigo/svelte-video-player/blob/1a2bd325b9a1d45ab459af72aa20185744953e62/src/PlayIconCenter.svelte#L27) should be: ``` transition:fade|local={{ duration: 500 }}> ``` or else you trigger [this bug](https://github.com/sveltejs/kit/issues/7405).
Gets SvelteKit SSR working for VideoPlayer Fixes #15
Was wondering if it possible to fudge the PlayPauseIcon to include a different SVG file? Or replace with an external one?
Hi, when the components `source` property changes, should the video that's displayed be updated? My test case: ```svelte import VideoPlayer from 'svelte-video-player'; let src1 = 'https://res.cloudinary.com/dvm02rtnk/video/upload/v1628057414/blender/HERO_Blender_Grease_Pencil_Showcase_1080p_ctsjpy.mp4'; let src2 = 'https://res.cloudinary.com/dvm02rtnk/video/upload/v1628057411/blender/Agent_327_Operation_Barbershop_1080p_hf1iq7.mp4';...