Search found 9 matches

by smp
Tue Jul 02, 2024 9:05 pm
Forum: Hardware Queries
Topic: SV3C camera calls china!
Replies: 3
Views: 3588

Re: SV3C camera calls china!

You can block outgoing web traffic from your cams through the router firewall. This makes it so that your IP Cam cannot initiate communication with a remote IP, it will only respond to incoming traffic, which should only be the apps you are using to connect to the cams remotely. I had the same ...
by smp
Sat Jun 29, 2024 6:46 pm
Forum: ZoneMinder 1.36.x
Topic: Ubuntu 24.04 noble release
Replies: 15
Views: 9498

Re: Ubuntu 24.04 noble release

I'm not sure that's a snag as such. You are intended to put your own password in there, not leave it as "zmpass" The problem is that this occurs during the install, before you have had a chance to change the password. zm.conf has been installed by the time the install exits on error, so you can ...
by smp
Fri Jun 28, 2024 6:28 pm
Forum: ZoneMinder 1.36.x
Topic: Ubuntu 24.04 noble release
Replies: 15
Views: 9498

Re: Ubuntu 24.04 noble release

Just upgraded to Ubuntu 24.04LTS used instructions at: https://www.youtube.com/watch?v=hUqMUhgytyc and the PPA: ppa:iconnor/zoneminder-proposed I hit one snag: Creating zm user zmuser ERROR 1819 (HY000) at line 1: Your password does not satisfy the current policy requirements The issue is caused ...
by smp
Mon Jun 24, 2024 2:32 pm
Forum: Hardware Queries
Topic: SV3C C22 PTZ Presets help.
Replies: 1
Views: 20329

Re: SV3C C22 PTZ Presets help.

Cribbed from my Sv3c.pm module: ========================================================================== How to obtain onvif conformant info for SV3C cameras: go to: https://www.onvif.org/conformant-products/ Product Search > Manufacturer > SV3C Technology Limited scroll down to camera of interest ...
by smp
Mon Jun 24, 2024 2:17 pm
Forum: Hardware Queries
Topic: SV3C camera calls china!
Replies: 3
Views: 3588

SV3C camera calls china!

- I decided to log the SV3C camera's network traffic, and to my horror I saw it calling home: DST=47.94.5.121 FG7HtPxrJo00bs3g.png POE cameras seem to be much better than managing analog equipment, at least for me. I cannot afford commercial equipment, so I'm stuck with the china stuff. My proposed ...
by smp
Sun Jun 23, 2024 10:15 pm
Forum: Hardware Queries
Topic: retreiving data from a camera control page
Replies: 3
Views: 3552

Re: retreiving data from a camera control page

Thanx again!

Having gotten past that glitch, it took me less than 30 minutes to get iris working!!

Now a little cleanup and I'll see if I can figure out how to turn off those LEDs.
by smp
Sun Jun 23, 2024 9:46 pm
Forum: Hardware Queries
Topic: retreiving data from a camera control page
Replies: 3
Views: 3552

Re: retreiving data from a camera control page

Thanx!

Code: Select all

  my $max = $self->MaxIrisRange();
  print(">>> Iris brightness " step: $step, max: $max <<<\n");

Code: Select all

>> Iris brightness 40, step: 8, max: 255 <<<
by smp
Sun Jun 23, 2024 6:49 pm
Forum: Hardware Queries
Topic: retreiving data from a camera control page
Replies: 3
Views: 3552

retreiving data from a camera control page

I'm writing a perl5 control module for an SV3C ptz camera. I created a new control type named Sv3c: I can retrieve the stored value for step with: my $step = $self->getParam($params, 'step'); my $min = $self->getParam($params, 'min'); print(">>> Iris brightness " step: $step, min: $min <<<\n"); The ...
by smp
Sat Jun 22, 2024 9:17 pm
Forum: User Contributions
Topic: SV3C camera support
Replies: 0
Views: 4453

SV3C camera support

Hi all, My first time here. Purchased an SV3C SD7POE-8MP-Hx camera, been working a few days to get it working. It uses onvif protocol, but neither Netcat nor onvif devices worked for me. Copied Netcat.pm to Sv3c.pm and did modifications. I can now do pan/tilt, zoom and iris/brightness. BE SURE TO ...