Add info for stream picking being disabled

This commit is contained in:
Nicolas Mowen 2025-09-29 15:03:58 -06:00
parent 7f12cfe281
commit 5b37133b2f
2 changed files with 12 additions and 0 deletions

View File

@ -124,6 +124,9 @@
"available": "Audio is available for this stream",
"unavailable": "Audio is not available for this stream"
},
"debug": {
"picker": "Stream selection unavailable in debug mode. Debug view always uses the stream assigned the detect role."
},
"twoWayTalk": {
"tips": "Your device must support the feature and WebRTC must be configured for two-way talk.",
"available": "Two-way talk is available for this stream",

View File

@ -1096,6 +1096,15 @@ function FrigateCameraFeatures({
</SelectContent>
</Select>
{debug && (
<div className="flex flex-row items-center gap-1 text-sm text-muted-foreground">
<>
<LuX className="size-8 text-danger" />
<div>{t("stream.debug.picker")}</div>
</>
</div>
)}
{preferredLiveMode != "jsmpeg" &&
!debug &&
isRestreamed && (