
wesker
@wesker@lemmy.sdf.org
Making the world a better place, one genetic experiment at a time.
- Comment on Selfhosting Sunday! What's up? 2 hours ago:
I installed cameras in my condo recently, and I need to buy and install a larger HDD for capture storage. I ordered a 6TB WD Purple off Amazon, only to have it arrive used (it was absolutely not marked used or refurbished.) So I returned it, naturally. I think that the safest bet is just to order it directly from one of their vendors.
Also, I need to tinker with my postgres install on my Unraid server a bit. Right now a couple other services I host on Unraid use it, but I now need it available to other devices on the LAN.
- Comment on Thank you to the admin that brought old.lemmy.sdf.org back 23 hours ago:
you’re welcome
- Comment on What happened to old.lemmy.sdf.org? 3 days ago:
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
Admittedly, I enjoy that format. I think it requires more investment in the community, by both users and moderation staff. Said as someone who used to administrate a forums.
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
Downvotes on Lemmy do virtually nothing, as demonstrated by how much traffic this post is still getting. They’re basically a placebo that allows people to feel as of they’ve engaged, without having to actually engage.
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
Free country. It is a freeeeee country bro.
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
Thank you, I’ve completed 159 pages so far, but I can’t figure out how to reliably reduce the number of em dashes.
- Comment on Can I use two password managers at the same time? 6 days ago:
You can install two, but I only think you can have one active at a time to supply auto-fill. It might be possible if you leverage a work profile and install the work password manager in the work profile, but then it’d likely only autofill for apps that are installed in the work profile – which honestly, is how you should be compartmentalizing things anyway, if you use one phone for personal and work functions.
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
I ranted in a rant community. Disagreements happen, free country bro.
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
Everything I do is a vibe, I’m a bit of a trend setter. I guess I’m just not welcome.
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
Kind of a weird thing to say, bro.
- Comment on Due to pressure from ultra-left crybaby luddites, Codeberg has updated their TOS to exclude projects that incorporate LLMs in their development tool set 6 days ago:
- Submitted 6 days ago to rant@lemmy.sdf.org | 27 comments
- Comment on Cannot create new communities 1 week ago:
sdf doing a perpetual shitty
- Comment on slskd just got a facelift 1 week ago:
It’s for the best.
- Submitted 1 week ago to selfhosted@lemmy.world | 6 comments
- Comment on Showing off my chocolate soldier 4 weeks ago:
Risky click of the day.
- Submitted 1 month ago to rant@lemmy.sdf.org | 0 comments
- Comment on I wanna gonna use Fable 5 this weekend to finally write my book 1 month ago:
And the brain part?
- Comment on Capture server update 1 month ago:
Oh, I uhh… also bought a Panasonic AG-1980 SVHS deck. Those that know, know.
- Submitted 1 month ago to selfhosted@lemmy.world | 2 comments
- Comment on I wanna gonna use Fable 5 this weekend to finally write my book 1 month ago:
This is ableist.
- Comment on What is SSH ? 1 month ago:
- Comment on What is SSH ? 1 month ago:
secure shell
- Submitted 1 month ago to rant@lemmy.sdf.org | 4 comments
- Comment on Analog Capture Server LIVES! 1 month ago:
Thank you for the offer. Though, my intention is to just control everything via terminal.
- Comment on Analog Capture Server LIVES! 1 month ago:
I’m familiar with vhs-decode, on account of considering a domesday for digital backup of my large LaserDisc collection. I decided in the end though, that both applications are just way above and beyond what I want to do.
- Comment on Analog Capture Server LIVES! 1 month ago:
I do a lot of Hi8 digitizing, because I like to film in it, so this is first and foremost for that usecase. But I also want to get set up to digitize VHS found footage and lost media.
- Comment on Analog Capture Server LIVES! 1 month ago:
The script is nothing to write home about at the moment, with most of my time being spent just dialing it in for performance given the age of the Thinkserver. I feel that’s pretty squared away, so the next step is updating it to accept args for things like fps, resolution, etc.
#!/bin/sh AUDIO_DEV="hw:CARD=HDMI,DEV=0" FPS=60 OUTDIR="/home/wesker/capture" PREVIEW_URL="udp://netsphere.lab:5000?pkt_size=1316" exec ffmpeg -hide_banner \ -thread_queue_size 2048 -f v4l2 -input_format yuyv422 \ -video_size 1920x1080 -framerate "$FPS" -i /dev/video0 \ -thread_queue_size 2048 -f alsa -i "$AUDIO_DEV" \ -map 0:v -map 1:a \ -c:v dnxhd -profile:v dnxhr_sq -c:a pcm_s16le \ "$OUTDIR/$(date +%F-%H%M%S).mov" \ -map 0:v -map 1:a \ -c:v libx264 -preset ultrafast -tune zerolatency -g 20 \ -c:a aac -b:a 128k \ -f mpegts "$PREVIEW_URL"
- Comment on Analog Capture Server LIVES! 1 month ago:
I settled on the Magewell card because I found one super cheap, their Linux drivers seem pretty well supported and maintained, and I wanted a bolted-in solution since everything is rackmount.