mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-26 05:39:04 +03:00
* config file changes * config migrator * stream selection on single camera live view * camera streaming settings dialog * manage persistent group streaming settings * apply streaming settings in camera groups * add ability to clear all streaming settings from settings * docs * update reference config * fixes * clarify docs * use first stream as default in dialog * ensure still image is visible after switching stream type to none * docs * clarify docs * add ability to continue playing stream in background * fix props * put stream selection inside dropdown on desktop * add capabilities to live mode hook * live context menu component * resize observer: only return new dimensions if they've actually changed * pass volume prop to players * fix slider bug, https://github.com/shadcn-ui/ui/issues/1448 * update react-grid-layout * prevent animated transitions on draggable grid layout * add context menu to dashboards * use provider * streaming dialog from context menu * docs * add jsmpeg warning to context menu * audio and two way talk indicators in single camera view * add link to debug view * don't use hook * create manual events from live camera view * maintain grow classes on grid items * fix initial volume state on default dashboard * fix pointer events causing context menu to end up underneath image on iOS * mobile drawer tweaks * stream stats * show settings menu for non-restreamed cameras * consistent settings icon * tweaks * optional stats to fix birdseye player * add toaster to live camera view * fix crash on initial save in streaming dialog * don't require restreaming for context menu streaming settings * add debug view to context menu * stats fixes * update docs * always show stream info when restreamed * update camera streaming dialog * make note of no h265 support for webrtc * docs clarity * ensure docs show streams as a dict * docs clarity * fix css file * tweaks
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
import WebRtcPlayer from "./WebRTCPlayer";
|
|
import { BirdseyeConfig } from "@/types/frigateConfig";
|
|
import ActivityIndicator from "../indicators/activity-indicator";
|
|
import JSMpegPlayer from "./JSMpegPlayer";
|
|
import MSEPlayer from "./MsePlayer";
|
|
import { LivePlayerMode } from "@/types/live";
|
|
import { cn } from "@/lib/utils";
|
|
import React from "react";
|
|
|
|
type LivePlayerProps = {
|
|
className?: string;
|
|
birdseyeConfig: BirdseyeConfig;
|
|
liveMode: LivePlayerMode;
|
|
pip?: boolean;
|
|
containerRef: React.MutableRefObject<HTMLDivElement | null>;
|
|
onClick?: () => void;
|
|
};
|
|
|
|
export default function BirdseyeLivePlayer({
|
|
className,
|
|
birdseyeConfig,
|
|
liveMode,
|
|
pip,
|
|
containerRef,
|
|
onClick,
|
|
}: LivePlayerProps) {
|
|
let player;
|
|
if (liveMode == "webrtc") {
|
|
player = (
|
|
<WebRtcPlayer
|
|
className={`size-full rounded-lg md:rounded-2xl`}
|
|
camera="birdseye"
|
|
pip={pip}
|
|
/>
|
|
);
|
|
} else if (liveMode == "mse") {
|
|
if ("MediaSource" in window || "ManagedMediaSource" in window) {
|
|
player = (
|
|
<MSEPlayer
|
|
className={`size-full rounded-lg md:rounded-2xl`}
|
|
camera="birdseye"
|
|
pip={pip}
|
|
/>
|
|
);
|
|
} else {
|
|
player = (
|
|
<div className="w-5xl text-center text-sm">
|
|
iOS 17.1 or greater is required for this live stream type.
|
|
</div>
|
|
);
|
|
}
|
|
} else if (liveMode == "jsmpeg") {
|
|
player = (
|
|
<JSMpegPlayer
|
|
className="flex size-full justify-center overflow-hidden rounded-lg md:rounded-2xl"
|
|
camera="birdseye"
|
|
width={birdseyeConfig.width}
|
|
height={birdseyeConfig.height}
|
|
containerRef={containerRef}
|
|
playbackEnabled={true}
|
|
useWebGL={true}
|
|
/>
|
|
);
|
|
} else {
|
|
player = <ActivityIndicator />;
|
|
}
|
|
|
|
return (
|
|
<div
|
|
ref={containerRef}
|
|
className={cn(
|
|
"relative flex w-full cursor-pointer justify-center",
|
|
className,
|
|
)}
|
|
onClick={onClick}
|
|
>
|
|
<div className="pointer-events-none absolute inset-x-0 top-0 z-10 h-[30%] w-full rounded-lg bg-gradient-to-b from-black/20 to-transparent md:rounded-2xl"></div>
|
|
<div className="pointer-events-none absolute inset-x-0 bottom-0 z-10 h-[10%] w-full rounded-lg bg-gradient-to-t from-black/20 to-transparent md:rounded-2xl"></div>
|
|
<div className="size-full">{player}</div>
|
|
</div>
|
|
);
|
|
}
|