New WebRTC and Video Player

This commit is contained in:
2025-10-02 18:46:37 +05:30
parent 0928f78a1f
commit 1063c4e9a9
9 changed files with 1495 additions and 60 deletions
+14
View File
@@ -0,0 +1,14 @@
---
import VideoPlayer from "../components/VideoPlayer.astro";
import ComponentLayout from "../layouts/ComponentLayout.astro";
---
<ComponentLayout>
<VideoPlayer
videoUrl="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/SubaruOutbackOnStreetAndDirt.mp4"
videoType="video/mp4"
class="wr:w-[500px]"
muted={false}
volume={0.7}
/>
</ComponentLayout>