feat: Implement video player & playback

This commit is contained in:
Aleksi Lassila
2024-04-01 14:53:59 +03:00
parent 243ee258c1
commit 5dbcff0271
4 changed files with 17 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
<script lang="ts">
import FullScreenModal from '../Modal/FullScreenModal.svelte';
import VideoPlayer from './VideoPlayer.svelte';
export let modalId: symbol;
export let id: string;
</script>
<FullScreenModal {modalId}>
<VideoPlayer jellyfinId={id} />
</FullScreenModal>