Is there anyway to automate a task that will store recording local while they are being made and then move them to another location once completed? Would be great because my local Channels DVR server runs on one machine but I store the recordings on a NAS.
What OS is your operating system on ... I record to an SSD then move to mass storage when DVR is Idle.
Windows 10
Sample Will Check DVR every 5 minutes TIMEOUT /T 300 can be changed.
CD /d "%~dp0"
set DVRSTATUS=2
:loop
if %DVRSTATUS% EQU 1 TIMEOUT /T 300
curl.exe "http://10.0.0.144:8089/dvr"|findstr /I /C:"busy\":false"
set DVRSTATUS=%ERRORLEVEL%
if %DVRSTATUS% EQU 1 goto loop
if %DVRSTATUS% EQU 0 ROBOCOPY "D:\ChannelsDVR\TV\Charmed" "\\WDMYCLOUDDL2100\ChannelsDVR2\TV\Charmed" /move /COPY:DT /minage:0 /e /R:2 /W:2
exit
Will keep continuously keep checking
CD /d "%~dp0"
set DVRSTATUS=2
:loop
if %DVRSTATUS% EQU 1 TIMEOUT /T 300
curl.exe "http://10.0.0.144:8089/dvr"|findstr /I /C:"busy\":false"
set DVRSTATUS=%ERRORLEVEL%
if %DVRSTATUS% EQU 1 goto loop
if %DVRSTATUS% EQU 0 ROBOCOPY "D:\ChannelsDVR\TV\Charmed" "\\WDMYCLOUDDL2100\ChannelsDVR2\TV\Charmed" /move /COPY:DT /minage:0 /e /R:2 /W:2
TIMEOUT /T 300
goto loop
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.