Reolink updates Learn More
Meet Reolink at IFA 2024! Learn More
Reolink Q&A Learn More
Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I use an intermediate ubuntu ftp server to send the images from the Reolink to. I then use the convert statement to reduce the size and curl to upload it to WU. This is a sceduled command every munite. This allows me to keep the hi-res versions for other things, but send the lower resolution ones to weather underground:latestfile=$(find /home/vftp/ipcamera/Cam2 -maxdepth 1 -type f -printf "%f\n" | sort | tail -1); #Get the second latest pictureconvert /home/vftp/ipcamera/Cam2/${latestfile} -resize 40% -quality 70 /home/vftp/ipcamera/Cam2/small/${latestfile}; #Convert to an WU acceptable sizecurl -T "/home/vftp/ipcamera/Cam2/small/${latestfile}" -u TrebaczCAM4:WUPASSWORD ftp://webcam.wunderground.com/ #Upload to WUI also have another script that builds a 2 hour time lapse from the 1 minute shots from the camera. The script adds a time stamp to the images. It looks great on my weather page.... see the bottom of this page - https://www.trebacz.com/weather/index.html
I received the email today about new firmware for the 410WS. I was happy to see that they added the capability for the camera to push jpg's only (not both jpg and mp4 as before). This would save me network bandwidth and space on my ftp server. Following the documentation and learnings from the last upgrade here is the process I followed:
Not just you. I was also disappointed to see the reliance on flash for any features that involve live video. I've disabled flash on most of my machines.
I confirmed that the two rtsp streams work with the upgraded firmware on the RL-410WS (Version: 1168_16070803). The format of the URL that works for me is (given above):rtsp://(user name):(password)@(ip address):554//h264Preview_01_main (1920x1090 H264)rtsp://(user name):(password)@(ip address):554//h264Preview_01_sub (640x354 H264)It only seems to work with admin accounts. The other account I have on my camera doesn't work. I get mp4 files though the ftp export.
It appears that the frequency of writing out jpg's (and 264 video) is controlled by the file length of the video in the ftp settings. I changed my file length from 1024 to 50. I now get a jpg approximately once a minute from the camera to my ftp server.It also pushes the smaller video file, but I just delete those. It would be nice to turn of the video files to save the wireless bandwidth to the ftp server.
In my setup, I get 264 video and a jpg. I get about 3 jpg's and hour. I didn't see anywhere to specify one or the other or change the frequency. Definitely could use some enhanced firmware with more setting to control this. I may need to resort to writing a script to pull jpeg from the camera, since my other cameras send a jpg once a second.
Hi All,This is what I have been using to spot check the cameras in chrome so that I don’t have to go through the reolink client. (Im using Sighthound for recording and their interface works well for browser based viewing as well. )You will need to run this in a webserver if you are wanting to you use this remotely, but for testing you can use this on your local lan to make sure it works for you.This code pulls the cgi-bin snapshot and uses some javascript to set a math rand with an interval of two seconds. I would not recommend anything less than 2 seconds as the image doesn’t have enough time to reload prior to being refreshed. The rand is there so that the browser does not attempt to pull the snapshot from cache. I know this works in Chrome and I haven’t tested in any other browsers. I have attached the source code as a file. You will need to edit your IP address, username and password. Hope this helps.
Thanks for the simple hack for a snapshot. Now if I could just get a streaming URL structure...
Welcome Back!
Hi there! Join the Commnunity to get all the latest news, tips and more!