Looked everywhere and cannot figure out what "switch" it is to do the below and STORE the files without compression.
My IP security camera will sometimes capture 4k images and vids, especially if raining or snowing and it will take too long to archive them. Sooo, What would the correct syntax be to store them without compression?
Here is the batch file I use..
--paste--
rem taskkill /f /fi "Master eq NT AUTHORITY\SYSTEM" /im iSpyMonitor.exe
rem taskkill /f /fi "Master eq NT AUTHORITY\SYSTEM" /im iSpy.exe
rmdir /S /Q E:\Dropbox\Private\HouseCam\video\GarageCam\thumbs
7z.exe a -r E:\iSPY\"%DATE:~7,2%.%DATE:~4,2%.%DATE:~-4% 10AM-GarageCam-VIDEO-BACKUP".7z E:\Dropbox\Private\HouseCam\video\GarageCam\*.mp4
7z.exe a -r E:\iSPY\"%DATE:~7,2%.%DATE:~4,2%.%DATE:~-4% 10AM-GarageCam-IMAGES-BACKUP".7z E:\Dropbox\Private\HouseCam\video\GarageCam\*.jpg
del /F /S E:\Dropbox\Private\HouseCam\video\GarageCam\*.mp4
del /F /S E:\Dropbox\Private\HouseCam\video\GarageCam\*.jpg
@echo off
rem start "" "C:\Program Files\Ispy\Ispy.exe" /secondary /minimized
rem psexec \\192.168.1.25 -u Master -p B****D -c "C:\Program Files\Ispy\Ispy.exe"
exit
My IP security camera will sometimes capture 4k images and vids, especially if raining or snowing and it will take too long to archive them. Sooo, What would the correct syntax be to store them without compression?
Here is the batch file I use..
--paste--
rem taskkill /f /fi "Master eq NT AUTHORITY\SYSTEM" /im iSpyMonitor.exe
rem taskkill /f /fi "Master eq NT AUTHORITY\SYSTEM" /im iSpy.exe
rmdir /S /Q E:\Dropbox\Private\HouseCam\video\GarageCam\thumbs
7z.exe a -r E:\iSPY\"%DATE:~7,2%.%DATE:~4,2%.%DATE:~-4% 10AM-GarageCam-VIDEO-BACKUP".7z E:\Dropbox\Private\HouseCam\video\GarageCam\*.mp4
7z.exe a -r E:\iSPY\"%DATE:~7,2%.%DATE:~4,2%.%DATE:~-4% 10AM-GarageCam-IMAGES-BACKUP".7z E:\Dropbox\Private\HouseCam\video\GarageCam\*.jpg
del /F /S E:\Dropbox\Private\HouseCam\video\GarageCam\*.mp4
del /F /S E:\Dropbox\Private\HouseCam\video\GarageCam\*.jpg
@echo off
rem start "" "C:\Program Files\Ispy\Ispy.exe" /secondary /minimized
rem psexec \\192.168.1.25 -u Master -p B****D -c "C:\Program Files\Ispy\Ispy.exe"
exit