mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-18 09:04:28 +03:00
always show stream info when restreamed
This commit is contained in:
parent
0eebbd362a
commit
6d46d7a3ed
@ -211,7 +211,7 @@ export function CameraStreamingDialog({
|
|||||||
<span className="sr-only">Info</span>
|
<span className="sr-only">Info</span>
|
||||||
</div>
|
</div>
|
||||||
</PopoverTrigger>
|
</PopoverTrigger>
|
||||||
<PopoverContent className="w-80">
|
<PopoverContent className="w-80 text-xs">
|
||||||
Audio must be output from your camera and configured in
|
Audio must be output from your camera and configured in
|
||||||
go2rtc for this stream.
|
go2rtc for this stream.
|
||||||
<div className="mt-2 flex items-center text-primary">
|
<div className="mt-2 flex items-center text-primary">
|
||||||
|
|||||||
@ -1047,11 +1047,42 @@ function FrigateCameraFeatures({
|
|||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent className="max-w-96">
|
<DropdownMenuContent className="max-w-96">
|
||||||
<div className="flex flex-col gap-5 p-4">
|
<div className="flex flex-col gap-5 p-4">
|
||||||
{Object.values(camera.live.streams).length > 1 && (
|
{!isRestreamed && (
|
||||||
|
<div className="flex flex-col gap-2">
|
||||||
|
<Label>Stream</Label>
|
||||||
|
<div className="flex flex-row items-center gap-1 text-sm text-muted-foreground">
|
||||||
|
<LuX className="size-4 text-danger" />
|
||||||
|
<div>Restreaming is not enabled for this camera.</div>
|
||||||
|
<Popover>
|
||||||
|
<PopoverTrigger asChild>
|
||||||
|
<div className="cursor-pointer p-0">
|
||||||
|
<LuInfo className="size-4" />
|
||||||
|
<span className="sr-only">Info</span>
|
||||||
|
</div>
|
||||||
|
</PopoverTrigger>
|
||||||
|
<PopoverContent className="w-80 text-xs">
|
||||||
|
Set up go2rtc for additional live view options and audio
|
||||||
|
for this camera.
|
||||||
|
<div className="mt-2 flex items-center text-primary">
|
||||||
|
<Link
|
||||||
|
to="https://docs.frigate.video/configuration/live"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="inline"
|
||||||
|
>
|
||||||
|
Read the documentation{" "}
|
||||||
|
<LuExternalLink className="ml-2 inline-flex size-3" />
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</PopoverContent>
|
||||||
|
</Popover>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{isRestreamed &&
|
||||||
|
Object.values(camera.live.streams).length > 0 && (
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<Label htmlFor="streaming-method" className="">
|
<Label htmlFor="streaming-method">Stream</Label>
|
||||||
Stream
|
|
||||||
</Label>
|
|
||||||
<Select
|
<Select
|
||||||
value={streamName}
|
value={streamName}
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
@ -1126,7 +1157,9 @@ function FrigateCameraFeatures({
|
|||||||
{supports2WayTalk ? (
|
{supports2WayTalk ? (
|
||||||
<>
|
<>
|
||||||
<LuCheck className="size-4 text-success" />
|
<LuCheck className="size-4 text-success" />
|
||||||
<div>Two-way talk is available for this stream</div>
|
<div>
|
||||||
|
Two-way talk is available for this stream
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
@ -1142,8 +1175,8 @@ function FrigateCameraFeatures({
|
|||||||
</div>
|
</div>
|
||||||
</PopoverTrigger>
|
</PopoverTrigger>
|
||||||
<PopoverContent className="w-80 text-xs">
|
<PopoverContent className="w-80 text-xs">
|
||||||
Your device must suppport the feature and WebRTC
|
Your device must suppport the feature and
|
||||||
must be configured for two-way talk.
|
WebRTC must be configured for two-way talk.
|
||||||
<div className="mt-2 flex items-center text-primary">
|
<div className="mt-2 flex items-center text-primary">
|
||||||
<Link
|
<Link
|
||||||
to="https://docs.frigate.video/configuration/live/#webrtc-extra-configuration"
|
to="https://docs.frigate.video/configuration/live/#webrtc-extra-configuration"
|
||||||
@ -1168,8 +1201,8 @@ function FrigateCameraFeatures({
|
|||||||
<IoIosWarning className="mr-1 size-8 text-danger" />
|
<IoIosWarning className="mr-1 size-8 text-danger" />
|
||||||
|
|
||||||
<p className="text-sm">
|
<p className="text-sm">
|
||||||
Live view is in low-bandwidth mode due to buffering or
|
Live view is in low-bandwidth mode due to buffering
|
||||||
stream errors.
|
or stream errors.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<Button
|
<Button
|
||||||
@ -1180,7 +1213,9 @@ function FrigateCameraFeatures({
|
|||||||
onClick={() => setLowBandwidth(false)}
|
onClick={() => setLowBandwidth(false)}
|
||||||
>
|
>
|
||||||
<MdOutlineRestartAlt className="size-5 text-primary-variant" />
|
<MdOutlineRestartAlt className="size-5 text-primary-variant" />
|
||||||
<div className="text-primary-variant">Reset stream</div>
|
<div className="text-primary-variant">
|
||||||
|
Reset stream
|
||||||
|
</div>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
@ -1309,7 +1344,39 @@ function FrigateCameraFeatures({
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-3 flex flex-col gap-5">
|
<div className="mt-3 flex flex-col gap-5">
|
||||||
{Object.values(camera.live.streams).length > 1 && (
|
{!isRestreamed && (
|
||||||
|
<div className="flex flex-col gap-2 p-2">
|
||||||
|
<Label>Stream</Label>
|
||||||
|
<div className="flex flex-row items-center gap-1 text-sm text-muted-foreground">
|
||||||
|
<LuX className="size-4 text-danger" />
|
||||||
|
<div>Restreaming is not enabled for this camera.</div>
|
||||||
|
<Popover>
|
||||||
|
<PopoverTrigger asChild>
|
||||||
|
<div className="cursor-pointer p-0">
|
||||||
|
<LuInfo className="size-4" />
|
||||||
|
<span className="sr-only">Info</span>
|
||||||
|
</div>
|
||||||
|
</PopoverTrigger>
|
||||||
|
<PopoverContent className="w-80 text-xs">
|
||||||
|
Set up go2rtc for additional live view options and audio for
|
||||||
|
this camera.
|
||||||
|
<div className="mt-2 flex items-center text-primary">
|
||||||
|
<Link
|
||||||
|
to="https://docs.frigate.video/configuration/live"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="inline"
|
||||||
|
>
|
||||||
|
Read the documentation{" "}
|
||||||
|
<LuExternalLink className="ml-2 inline-flex size-3" />
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</PopoverContent>
|
||||||
|
</Popover>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{isRestreamed && Object.values(camera.live.streams).length > 0 && (
|
||||||
<div className="mt-1 p-2">
|
<div className="mt-1 p-2">
|
||||||
<div className="mb-1 text-sm">Stream</div>
|
<div className="mb-1 text-sm">Stream</div>
|
||||||
<Select
|
<Select
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user