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).
So I am going to get the RLC-820A POE cams and wire them up to a POE switch > Router > Access via Windows 10 Reolink Client.
All of my Reolink cameras record to an SD card (maximum 256MB) that is housed inside the camera.The RLC-820A supports SD Card storage:https://reolink.com/product/rlc-820a/#specificationsI also have my cameras FTP motion recordings to an FTP server (actually on the same PC as the Reolink Client). I have a Windows batch script that runs once a day and 'cleans up' the FTP server by (a) deleting jpeg files after a few days and deleting mpeg files after two weeks. Here's what my batch file looks like:ECHO Job begins %date% %time%ECHO Remove JPG files older than 3 daysForfiles /p D:\Reolink\FrontDoorCam /s /m *.jpg /d -3 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\HondaCam /s /m *.jpg /d -3 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\PickupCam /s /m *.jpg /d -3 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\ShedCam /s /m *.jpg /d -3 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\SideCam /s /m *.jpg /d -3 /c "cmd /c del @file /f /q"ECHO Remove MPG files older than 15 daysForfiles /p D:\Reolink\FrontDoorCam /s /d -15 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\HondaCam /s /d -15 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\PickupCam /s /d -15 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\ShedCam /s /d -8 /c "cmd /c del @file /f /q"Forfiles /p D:\Reolink\SideCam /s /d -15 /c "cmd /c del @file /f /q"ECHO Remove Empty DirectoriesRobocopy D:\Reolink D:\Reolink /S /MOVEYou could probably do a similar batch file for the Reolink Download folder.I have no idea what happens when cameras are set to "continuous record".
Welcome Back!
Hi there! Join the Commnunity to get all the latest news, tips and more!