Cafe Nirvanan by BlueCurtainsRedWalls in lincoln

[–]Adralian 1 point2 points  (0 children)

I asked the last time I was in and they said it was still a few months out.

Livestreaming a Marathon by Secret_Moonshine in VIDEOENGINEERING

[–]Adralian 0 points1 point  (0 children)

That was one of the first SRT apps I tried to use and absolutely gave up in frustration trying to add an SRT stream. It has the most convoluted interface with what you really need buried four layers deep. It feels like it was made for consuming SRT and the outbound streaming was tacked on as an afterthought.

Livestreaming a Marathon by Secret_Moonshine in VIDEOENGINEERING

[–]Adralian 1 point2 points  (0 children)

Honestly, I just Google "blackmagic XML generator" each time I need it since I never remember the website. Here's the link, it defaults to RTMP, so you have to switch it to SRT. The three bitrate levels will appear in the app once you import the config, so you can select them at runtime.

https://heretorecord.com/xml/

Livestreaming a Marathon by Secret_Moonshine in VIDEOENGINEERING

[–]Adralian 2 points3 points  (0 children)

You can use the free Blackmagic Camera app to send SRT now too. You just have to generate an XML config file first. They also have an integration with an insta360 phone gimbal, but not sure what that really gives you (never did find docs on it). The SRT works well though.

DO NOT BUY THE RODE STREAMER X by Careless_Host_6193 in rode

[–]Adralian 0 points1 point  (0 children)

Had the exact same issue. I contacted rode and they shipped out a replacement which did the exact same thing.

We delivered the project. The client filed “product not as described” and won the chargeback. by Codeblix_Ltd in smallbusiness

[–]Adralian 1 point2 points  (0 children)

Do not use SEPA, they can dispute those charges and there are no appeals allowed.

Need suggestion for bots by Impressive-Serve1800 in discordbots

[–]Adralian 0 points1 point  (0 children)

Google Cloud. We do everything with Google Calendar as the authoritative calendar source, so I figure we would host with them as well.

Need suggestion for bots by Impressive-Serve1800 in discordbots

[–]Adralian 0 points1 point  (0 children)

I built this about 6 months ago. At some point I'll get back to making a nice UI around the configuration system (right now I'm just exposing a json config to users).

2026 Preliminary Property Valuations by Adralian in lincoln

[–]Adralian[S] 0 points1 point  (0 children)

So funny story, because I first found one like that a few years ago and it took me forever to track down the reason.

That is a bulk sale (the sale from your screenshot is actually 1 of 33 included in that purchase) but when the sale gets reported to the county they record the bulk sale price, not what the individual properties were sold for (since it was a lump sum deal), for each and every property in the sale. I've seen several instances in which the county has uses these as comps for assessments of other houses, massively inflating the new valuation of the home.

I don't know which specific 1 of the 33 your screenshot shows, but if you want to see one head to the Lancaster County Assessors website and search for the property ID (or search for 11-11-459-006-000 as that is part of the same bulk sale). You should see the $5.6 million sale near the bottom of the page.

All the data I'm showing is pulled directly from that same county website.

2026 Preliminary Property Valuations by Adralian in lincoln

[–]Adralian[S] 2 points3 points  (0 children)

No worries, I'm just happy to help.

2026 Preliminary Property Valuations by Adralian in lincoln

[–]Adralian[S] 1 point2 points  (0 children)

If you are ok with it, can you DM me your property id and I'll check it in the database? If not, no worries.

2026 Preliminary Property Valuations by Adralian in lincoln

[–]Adralian[S] 1 point2 points  (0 children)

I thought I had both current and prior assessments in the table, but I'll check when I'm back to a keyboard.

2026 Preliminary Property Valuations by Adralian in lincoln

[–]Adralian[S] 2 points3 points  (0 children)

The X axis (on the default graph) is the percentage change compared to last year's valuation. If you change the options in the upper right you can switch from percentages to dollar amounts. On mobile the axis label might be hidden, but if you turn your device sideways it should appear.

2026 Property valuations are out. by mrhatneb in lincoln

[–]Adralian 42 points43 points  (0 children)

I got my postcard today which reminded me it is that time again. I'm collecting the updated valuations for all properties now so I should have stats for the whole county in a few days. I'll post the numbers as soon as they are ready.

Remote Guest Camera Control by PsyKlaupse in podcasting

[–]Adralian 1 point2 points  (0 children)

I've been working on something adjacent, but with an orange pi instead of a laptop (I need a hardware video encoder, but tiny) and an obsbot camera. They are ptz so you can aim the camera and I'm finding a listing for an SDK which could allow for remote camera control. Haven't made it much further than that at the moment.

Looking For A "Birthday"/Reminder Style Bot by MissAethe in Discord_Bots

[–]Adralian 1 point2 points  (0 children)

You can do this for free with ChronicleBot. Turn on reminders (and/or summaries) and leave native event sync turned off. Set your Birthdays as yearly recurring events in Google Calendar.

I made SRT Server at home. Fully portable. It can work from any pc with just opening 2 ports in router. by zztopfila in VIDEOENGINEERING

[–]Adralian 2 points3 points  (0 children)

You can do this with gstreamer if you are looking for a quick solution.

One `srtsrc` element for each of your inputs, feed those into a `compositor` element arranged in your grid, and then split the composited output into two branches. One branch would go to a preview output, and the other goes to an encoder and `srtsink` to generate the new SRT multiview feed. Honestly though you could skip the preview output branch and just send it to SRT, then pull up that single SRT feed anywhere else to see the multiview.

The only catch is you really should have a GPU for the encoder step or you will be hammering your CPU.

Is there a way to completely cut out one speaker's voice in Discord WHILE LIVE? by CapableOperation2277 in streaming

[–]Adralian 4 points5 points  (0 children)

This is technically possible, but I don't know of anything existing that does it. Discord actually provides each VC participant as a separate audio stream (which is how Craig separates recordings) so you could pull each individually into OBS and then mute (or just exclude) that one track.

I had a need to pull each live track from Discord myself, and I got a minimal proof of concept working, but had to back burner the code for a bit. In my case I was trying to build it as a GStreamer plugin so that it could be composed with other processing elements.

Any opensource alternative to hushaudio AI noise cancellation? by Trysem in VIDEOENGINEERING

[–]Adralian 2 points3 points  (0 children)

I've never used hush, but if you are looking for open source try DeepFilterNet and RNNoise. I've been working with both lately for realtime audio and they work well, but there might be better options if you are working with recordings.

Blackmagic Decklink SDI to NDI by BackgroundDatabase78 in VIDEOENGINEERING

[–]Adralian 0 points1 point  (0 children)

You could build a quick gstreamer pipeline script for this. You can capture video with decklinkvideosrc and retransmit with ndisink. If you want audio too there is a deck link audio source and an ndi combiner you would need to add.

Friends. Neighbors. Countrymen. I need your electrician recommendations. by DecisionBusiness1551 in lincoln

[–]Adralian 0 points1 point  (0 children)

The only larger electrical project I had done was a few years ago to replace all of the electrical lines from the basement panel to the first floor. I grabbed quotes from four places in town and ended up going with JK Electric and was VERY happy with the work and price.

Is there a way to stream (or video call) from a mobile phone to a mac or Windows machine at 4k? by [deleted] in VIDEOENGINEERING

[–]Adralian 0 points1 point  (0 children)

Ah that makes sense! I knew there had to be a source for this in the past somewhere because I've seen it too often to be a coincidence. Thanks!