| 8 Jul 2021 |
@hexa:lossy.network | awesome :) | 15:33:09 |
@hexa:lossy.network | these things happening, and I'm amazed by the hardening actually being very comfortable and not breaking many things | 15:33:29 |
@hexa:lossy.network | while taking your home-assistant configuration into consideration, so it can get even tighter depending on your use case | 15:33:51 |
iclanzan | Found another regression. My ffmpeg camera streams are missing audio, at least in the front-end. Testing the ffmpeg command manually does produce a stream with audio... | 15:50:26 |
@hexa:lossy.network | can you link the relevant component? | 15:53:17 |
iclanzan | camera = [
{
platform = "ffmpeg";
name = "foo";
input = "-i ${cameraUrl}";
}
];
# in lovelaceConfig
cards = [
{
type = "picture-glance";
title = "Some title";
entities = [];
camera_image = "camera.foo";
}
];
| 15:58:04 |
iclanzan | Clicking on the card opens a popover with the video stream, but it is lacking audio (and the audio toggle icon is disabled). | 15:59:12 |
@hexa:lossy.network | and that camera is a local /dev/something? | 16:14:04 |
iclanzan | It's a http url | 16:23:40 |
@hexa:lossy.network | uh, okay. not sure how hardening would be able to affect that. | 16:25:54 |
@hexa:lossy.network | I have a setup at my parents house that is using 2021.5.5 and audio is still working for such a setup | 16:27:32 |
iclanzan | Yeah, sorry. I didn't mean to imply that hardening made it regress. | 16:29:05 |
@hexa:lossy.network | oh ok | 16:35:22 |
| 9 Jul 2021 |
@hexa:lossy.network | if someone could look into https://github.com/NixOS/nixpkgs/pull/129644#issuecomment-877089208 | 12:13:44 |
@hexa:lossy.network | * if someone could look into https://github.com/NixOS/nixpkgs/pull/129644#issuecomment-877089208, that would be super helpful | 12:15:36 |
iclanzan | Found why there is no audio on my stream: https://github.com/home-assistant/core/pull/39906 | 13:51:37 |
@hexa:lossy.network | you sure? that was merged last year | 13:53:19 |
iclanzan | Yeah, I had changed my stream to be mpegts somewhere along the way but I assumed that the upgrade was to blame | 13:56:50 |
| vika (she/her) 🏳️⚧️ set a profile picture. | 16:39:06 |
| 10 Jul 2021 |
| Mic92 (Old) changed their display name from Mic92 to Mic92 (Old). | 14:02:14 |
| Mic92 (Old) invited Mic92. | 14:02:35 |
| Mic92 joined the room. | 14:02:36 |
| Mic92 (Old) left the room. | 15:00:58 |
| 11 Jul 2021 |
@hexa:lossy.network | In reply to @hexa:lossy.network if someone could look into https://github.com/NixOS/nixpkgs/pull/129644#issuecomment-877089208, that would be super helpful that's still the case … somehow since the last update they are trying to create multicast sockets for zeroconf, ssdp, upnp and that breaks alot of tests | 20:40:06 |
@hexa:lossy.network | need some help finding out which commit that was to understand how we can work around that | 20:40:19 |
| 12 Jul 2021 |
Church | So yeah running nixos-unstable and having an issue with hass_frontend missing.
My home-assistant config is as such:
```
{ config, pkgs, ... }:
{
services = {
home-assistant = {
enable = true;
package = (pkgs.home-assistant.override {
extraPackages = py: with py;
[ aiohttp-cors zeroconf
pycrypto zigpy zigpy-cc zigpy-zigate zigpy-znp
zigpy-deconz zigpy-xbee zha-quirks bellows
distro mutagen defusedxml hass-nabucasa gtts
netdisco gtts-token pynacl emoji pillow sqlalchemy
rokuecp async-upnp-client pyowm pyairnow pyairvisual
pexpect aiounifi adguardhome ];
}).overrideAttrs (_: {
tests = [];
doInstallCheck = false;
});
configWritable = true;
lovelaceConfigWritable = true;
};
};
}
```
Log files when starting the service are here: https://paste.rs/Q2Y | 02:57:20 |
Church | Curious what's up with hass_frontend not being found. | 02:57:35 |
@hexa:lossy.network | Church: are you using any of the components requiring in your config attrset? | 11:45:03 |
@hexa:lossy.network | * Church: are you using any of the components requiring it in your config attrset? | 11:45:11 |
@hexa:lossy.network | component-packages.nix
160: "default_config" = ps: with ps; [ pynacl aiodiscover aiohttp-cors async-upnp-client defusedxml distro emoji hass-nabucasa home-assistant-frontend ifaddr netdisco pillow scapy sqlalchemy zeroconf ];
291: "frontend" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow ];
342: "hassio" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow ];
463: "logbook" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow sqlalchemy ];
484: "map" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow ];
539: "my" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow ];
595: "onboarding" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow ];
627: "panel_custom" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow ];
628: "panel_iframe" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow ];
723: "safe_mode" = ps: with ps; [ aiohttp-cors hass-nabucasa home-assistant-frontend pillow ];
| 11:45:22 |