Search found 7 matches

by TheSwert
Fri Dec 14, 2018 4:46 pm
Forum: Hardware Compatibility List
Topic: Reolink RLC-410 Data Streams
Replies: 72
Views: 696905

Re: Reolink RLC-410 Data Streams

One thing I had to do to make all of my Reolink camera stop smearing is to use the RTMP urls. They're not well documented, but it solved my smearing issues. https://reolink.com/wp-content/uploads/2017/01/Reolink-CGI-command-v1.61.pdf Example for sub stream and main stream below. You set those to be ...
by TheSwert
Sat Dec 08, 2018 2:28 pm
Forum: User Contributions
Topic: ONVIF Control Script for Reolink Cameras With Authentication
Replies: 10
Views: 83711

Re: ONVIF Control Script for Reolink Cameras With Authentication

You will need to install the perl module DateTime. That can be accomplished by running the below. sudo cpanm DateTime The reason this dependency exists is to handle the proper ISO 8601 formatting of the date when doing the ONVIF authentication. Truthfully, I'm not an expert in perl, so if there's a ...
by TheSwert
Sun Jun 17, 2018 9:08 pm
Forum: ZoneMinder 1.31.x
Topic: H264 Passthoug removed in the 1.31.44
Replies: 2
Views: 3387

Re: H264 Passthoug removed in the 1.31.44

Going by this commit (https://github.com/ZoneMinder/zoneminde ... 014465e5eb) that was recently added on 6/14/18, I think it is automatically set when you select your camera type to be FFMpeg.
by TheSwert
Tue Jan 02, 2018 11:55 pm
Forum: User Contributions
Topic: ONVIF Control Script for Reolink Cameras With Authentication
Replies: 10
Views: 83711

Re: ONVIF Control Script for Reolink Cameras With Authentication

Sounds like you put the script in the right place. Did you update the settings in the Control tab for the camera? You have the put in settings in the Control Address field, and it should be in the format of username:password@10.0.100.1:8000. Are you seeing any errors in the log when you try and issu...
by TheSwert
Tue Apr 04, 2017 12:18 pm
Forum: User Contributions
Topic: ONVIF Control Script for Reolink Cameras With Authentication
Replies: 10
Views: 83711

Re: ONVIF Control Script for Reolink Cameras With Authentication

Not really. All of my testing was around making it work within Zoneminder. You should be able to find some code for sending SOAP requests via perl, or any other language for that matter. The important bits for interfacing with the RLC-423 are the authentication and the autostop. The camera has conti...
by TheSwert
Fri Jan 20, 2017 1:50 am
Forum: Hardware Compatibility List
Topic: Reolink RLC-423
Replies: 1
Views: 8406

Re: Reolink RLC-423

I just posted a config for the RLC-423. Give it a shot and let me know if it works for you.

viewtopic.php?f=9&t=25755

I was using v1.30 when developing it, so YMMV if you're using v1.29.
by TheSwert
Fri Jan 20, 2017 1:47 am
Forum: User Contributions
Topic: ONVIF Control Script for Reolink Cameras With Authentication
Replies: 10
Views: 83711

ONVIF Control Script for Reolink Cameras With Authentication

Hello all, After looking at the work on the Netcat script, I decided I wanted to make it work with my Reolink RLC-423 and RLC-411 cameras. One of the first challenges was that the Reolink cameras required authentication. The second was that I didn't actually know Perl...... After spending some time ...