mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-18 14:18:21 +03:00
Fixes 2-way audio on the Home Assistant Android companion app: toggling the microphone causes the video feed to go black while audio continues working. When the mic is toggled, the player switches from MSE to WebRTC, which creates a new PeerConnection and video stream. By the time the async WebRTC setup completes, the user gesture from the mic button click has expired under Android WebView's transient activation model, causing unmuted autoplay to be blocked. Fix this by introducing an `awaitingPlayback` state that forces the video element to start muted (muted autoplay is always allowed). Once the `playing` event fires, the flag is cleared and the muted prop falls back to the normal `!audioEnabled` logic, preserving audio toggle functionality. Closes https://github.com/blakeblackshear/frigate-hass-addons/issues/274 |
||
|---|---|---|
| .. | ||
| .vscode | ||
| images | ||
| patches | ||
| public | ||
| src | ||
| themes | ||
| .eslintrc.cjs | ||
| .gitignore | ||
| .prettierrc | ||
| components.json | ||
| index.html | ||
| login.html | ||
| package-lock.json | ||
| package.json | ||
| postcss.config.js | ||
| README.md | ||
| site.webmanifest | ||
| tailwind.config.cjs | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| vite.config.ts | ||
This is the Frigate frontend which connects to and provides a User Interface to the Python backend.
Web Development
Installing Web Dependencies Via NPM
Within /web, run:
npm install
Running development frontend
Within /web, run:
PROXY_HOST=<ip_address:port> npm run dev
The Proxy Host can point to your existing Frigate instance. Otherwise defaults to localhost:5000 if running Frigate on the same machine.
Extensions
Install these IDE extensions for an improved development experience:
- eslint