spacemanspiffy

joined 1 year ago
[–] spacemanspiffy@lemmy.world 3 points 7 hours ago

Alrighty then...

Picture this, if you will

[–] spacemanspiffy@lemmy.world 10 points 13 hours ago

Except for the gifs.

And the thousands of niche communities/subreddits.

[–] spacemanspiffy@lemmy.world 9 points 14 hours ago

Stop the war.

Apologize.

Find someone else to run the show.

[–] spacemanspiffy@lemmy.world 0 points 14 hours ago

I freaking agree

[–] spacemanspiffy@lemmy.world 8 points 22 hours ago (4 children)

I feel like I am the only person not super-jazzed about Cosmic.

If people are excited or want to use it, fine. But I don't know what it could possibly add to the mix besides offering mote DE choice, and Linux already has a lot of that.

[–] spacemanspiffy@lemmy.world 2 points 4 days ago

I played through Wario Land on GB emulator earlier this year. Probably that.

[–] spacemanspiffy@lemmy.world 13 points 1 week ago (1 children)

Genuinely unsure if you are trolling or legitimately against Palestinians.

[–] spacemanspiffy@lemmy.world 9 points 1 week ago (2 children)

I just wish uSD cards didn't die so easily.

[–] spacemanspiffy@lemmy.world 3 points 1 week ago

Toad in the Hole

Frog in the Log

[–] spacemanspiffy@lemmy.world 7 points 1 week ago (1 children)

Zee Ess Aitch

Ess Ess Aitch

Psuedo

Sue-doo is weird and unnatural.

[–] spacemanspiffy@lemmy.world 1 points 1 week ago

I've been waiting for this day sine the day he stopped growling.

[–] spacemanspiffy@lemmy.world 3 points 2 weeks ago (7 children)

Why? (I've heard but forget)

 

Current setup: We have four beautiful hens. We have a small (https://s3.amazonaws.com/images.ecwid.com/images/17432132/1357042818.jpg) metal container right now in our chicken run. It's set up on a small wooden platform that I built, and it sits on top of a water heater that turns on/off via a timer during the cold months (similar to this but different brand/model https://www.picclickimg.com/40EAAOSwewpmTaBO/Chicken-Water-Heater-Heated-Chicken-Waterer.webp). It works, but it's not a great solution.

Problems:

  • It is maybe 1.5 years old max, and it already starting to rust along the bottom where they drink from.
  • 3 gallons is ok, but we don't have running water out near the chicken run, and so we need to bring this back and forth to the house to fill it up. It's fine in warm months (can fill from the hose), but it sucks in the winter since I need to bring it inside and fill it in the tub in our basement.
  • Even 4-5 inches off the ground, they kick a lot of dirt, feathers, and probably chicken shit in here. I spray it out clean with each re-fill.
  • The heater barely works to thaw out the bottom so they can drink. It works, but often I find I still need to go out with some warm water to break up the ice a bit.

What I'd like:

  • Bigger container
  • Doesn't rust
  • Rain water collection?

I'm open to any suggestions on products or DIY projects to help improve this for our chickens. Below is a picture of our chicken run so y'all can see what I have to work with.

https://imgur.com/a/D0SmkYn

So, cool chicken-havers of Lemmy... Do you have any suggestions on how I can up my game here? Especially any recommendations on how I can do something to collect rainwater for this. Any guides that may have worked well for you. I'm open to any information.

 

cross-posted from: https://lemmy.world/post/15144957

Can anyone help me figure out Frigate/go2rtc

I have two cameras in Frigate.

One is a Raspberry Pi 3 running Monocle server, and this stopped working in Frigate some time back (driveway). The second is a Galayou G7 (nursery). The nursery camera is the one I am concerned about with this post.

Problem: Up until a month or two ago (I must have ran an update but I don't know) the audio from the Galayou camera worked in Home Assistant. I'd like to get that working again. Some searching led me to try setting up go2rtc in my config.

Here is my config before making any changes:

mqtt:
  host: 192.168.1.10
cameras:
  nursery:
    ffmpeg:
      inputs:
        - path: rtsp://redacted:redacted@192.168.1.241:554/live/ch1
          roles:
            - detect
    detect:
      width: 1280
      height: 720
  driveway:
    ffmpeg:
      inputs:
        - path: rtsp://192.168.1.240:554/recording/7824851880350319106/replay?trackid=8836591
          roles:
            - detect
    detect:
      width: 1920
      height: 1080

This currently provides only jsmpeg video in Frigate. If I add something like this to the end:

go2rtc:
  streams:
    nursery:
      - rtsp://redacted:redacted@192.168.1.241:554/live/ch1

this adds mse and webrtc as options in Frigate. But, mse plays only video, no audio. And webrtc loads neither audio nor video. I have tried adding lines like - "ffmpeg:nursery#video=h264#audio=aac" and also with opus but to no avail.

Finally, if I ffplay rtsp://redacted:redacted@192.168.1.241:554/live/ch1 it loads audio/video without a problem. I'm also able to connect via ONVIF at onvif://192.168.1.241:8899 from onvif-gui.

So, something is wrong in my Frigate config, and I don't know what. I'm hoping someone here is a little more familiar and can give me a pointer or two here?

Update: Here is the fix, in case anyone comes across this later:

go2rtc:
  streams:
    nursery:
      - "ffmpeg:rtsp://redacted@192.168.1.241:554/live/ch1#video=copy#audio=copy#audio=opus"
  webrtc:
    candidates:
      - <server-ip>:8555

The webrtc section got webrtc to work in the Frigate and video back in HASS. The #audio=copy#audio=opus got audio working in webrtc.

 

I have two cameras in Frigate.

One is a Raspberry Pi 3 running Monocle server, and this stopped working in Frigate some time back (driveway). The second is a Galayou G7 (nursery). The nursery camera is the one I am concerned about with this post.

Problem: Up until a month or two ago (I must have ran an update but I don't know) the audio from the Galayou camera worked in Home Assistant. I'd like to get that working again. Some searching led me to try setting up go2rtc in my config.

Here is my config before making any changes:

mqtt:
  host: 192.168.1.10
cameras:
  nursery:
    ffmpeg:
      inputs:
        - path: rtsp://redacted:redacted@192.168.1.241:554/live/ch1
          roles:
            - detect
    detect:
      width: 1280
      height: 720
  driveway:
    ffmpeg:
      inputs:
        - path: rtsp://192.168.1.240:554/recording/7824851880350319106/replay?trackid=8836591
          roles:
            - detect
    detect:
      width: 1920
      height: 1080

This currently provides only jsmpeg video in Frigate. If I add something like this to the end:

go2rtc:
  streams:
    nursery:
      - rtsp://redacted:redacted@192.168.1.241:554/live/ch1

this adds mse and webrtc as options in Frigate. But, mse plays only video, no audio. And webrtc loads neither audio nor video. I have tried adding lines like - "ffmpeg:nursery#video=h264#audio=aac" and also with opus but to no avail.

Finally, if I ffplay rtsp://redacted:redacted@192.168.1.241:554/live/ch1 it loads audio/video without a problem. I'm also able to connect via ONVIF at onvif://192.168.1.241:8899 from onvif-gui.

So, something is wrong in my Frigate config, and I don't know what. I'm hoping someone here is a little more familiar and can give me a pointer or two here?

 

Here is my problem:

Our TV is connected to a SBC running a GNOME/Wayland desktop, where we watch Jellyfin and sometimes Netflix/Hulu through Firefox.

I'd like to be able to trigger pause/play (space button) from Home Assistant, which is running on my home server.

What I am thinking of would be a server/daemon running on the TV computer that my home server would be able to send keys to via a CLI tool (in this case the space key). I am surprised to find that I cannot locate any program like this.

Can anyone provide any suggestions here?

Other ideas:

  • Jellyfin's HA integration doesn't let me pause/play from it, and that still doesn't handle Hulu/Netflix.
  • I was able to get this working through SSH and there are tools like ydotool/wtype here that work, but I found waiting for SSH to be a bit slow to connect.

Update: I got frustrated and coded up a solution: https://gitlab.com/neilsimp1/kbsrv

 

Hi. I have two plants I've been growing all summer on my back patio. One is a Trainwreck, the other it either Trainwreck or Lamb's Breath. I am not sure which is which.

The plants have grown pretty well all summer, are about 5.5 feet tall, and are starting to flower. One especially, the other only has a few little spindly guys at the nodes.

Anyways... I've had a few yellow leaves and just yanked em off all summer without too much worry. Now though, with all the flowers budding, I am seeing a ton more yellow leaves and it's making me worry.

I am using fish fertilizer and have been applying once a week.

Should I add anything else? Should I not worry about it? My regular gardening knowledge says the plants need nitrogen but I'm afraid to use any other fertilizers since I've killed cannabis plants in the past this way.

Edit: Pics https://imgur.com/a/AxTyRF3 https://imgur.com/a/tEjYJSF

view more: next ›