Added FLV Player

This commit is contained in:
2025-10-08 01:10:13 +05:30
parent f6be5084ad
commit 40ae8d5f3d
7 changed files with 282 additions and 38 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import { cn } from "../utils/cn";
interface Props extends HTMLAttributes<"div"> {
videoUrl: string;
videoType: string;
videoType?: string;
isLive?: boolean;
autoPlay?: boolean;
muted?: boolean;
@@ -15,7 +15,7 @@ interface Props extends HTMLAttributes<"div"> {
const {
videoUrl,
videoType,
videoType = "application/x-mpegURL",
isLive = false,
class: className = "",
autoPlay = false,