mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-20 04:53:31 +02:00
feat: Implement video player & playback
This commit is contained in:
10
src/lib/components/VideoPlayer/VideoPlayerModal.svelte
Normal file
10
src/lib/components/VideoPlayer/VideoPlayerModal.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user